diff options
author | Sven Gothel <[email protected]> | 2013-11-26 20:08:42 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-11-26 20:08:42 +0100 |
commit | 9310b11b2b6e1e89fa5ed9b8de26e56ff6a6b262 (patch) | |
tree | aec13af08d7cd3d97c468786b761ff74c8c00c6c /jnlp-files | |
parent | 1617b3edfa006432dbb7332c283e219e6583f4ec (diff) |
Bug 910: Add Standalone Extended Applet Lifecycle Validation Test
Test is online @ http://jogamp.org/deployment/test/bug910/
Test validates the state of the added component:
TC1 - addNotify() and removeNotify() has been called from AWT-EDT.
TC2 - removeNotify() is not called before Applet.destroy()
Test also validates the Applet state:
TA1 - isActive()
TA2 - init count
TA3 - start count
TA4 - stop count
TA5 - destroy count
Diffstat (limited to 'jnlp-files')
-rw-r--r-- | jnlp-files/Bug910-AppletLifecycleCheck.html | 32 | ||||
-rw-r--r-- | jnlp-files/jogl-test-applets.html | 1 |
2 files changed, 33 insertions, 0 deletions
diff --git a/jnlp-files/Bug910-AppletLifecycleCheck.html b/jnlp-files/Bug910-AppletLifecycleCheck.html new file mode 100644 index 000000000..eee6c1eee --- /dev/null +++ b/jnlp-files/Bug910-AppletLifecycleCheck.html @@ -0,0 +1,32 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<html> +<head> +<title>Bug910 Extended AWT Applet Lifecycle Check</title> +</head> +<body> + +<P> +The applet below tests the Applet Lifecycle. +Please read the stderr log for results! +</P> + +<P> + +<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" + width="400" height="200"> + <param name="code" value="com.jogamp.opengl.test.bugs.DemoBug910ExtendedAWTAppletLifecycleCheck"> + <param name="archive" value="jar/jogl-test.jar"> + <comment> + <embed code="com.jogamp.opengl.test.bugs.DemoBug910ExtendedAWTAppletLifecycleCheck" + width="400" height="200" + type="application/x-java-applet;version=1.6" + pluginspage="http://java.sun.com/javase/downloads/ea.jsp" + archive="jar/jogl-test.jar"> + <noembed>Sorry, no Java support detected.</noembed> + </embed> + </comment> +</object> + +</P> +</body> +</html> diff --git a/jnlp-files/jogl-test-applets.html b/jnlp-files/jogl-test-applets.html index 3ac2d5952..8eda51dee 100644 --- a/jnlp-files/jogl-test-applets.html +++ b/jnlp-files/jogl-test-applets.html @@ -216,6 +216,7 @@ Misc tests: <ul> <li><a href="jogl-applet-bug818_gljpanel01.html">Bug 818: OSX 10.6.8 NV GT 330M GLJPanel Crash</a></li> <li><a href="jogl-applet-bug848_glcanvas01.html">Bug 848: Applet on OSX w/ CALayer and 2 or more GLCanvas may crash</a></li> + <li><a href="Bug910-AppletLifecycleCheck.html">Bug 910: Extended AWT Applet Lifecycle Check</a></li> </ul></li> </ul> </p> |