WebCore/manual-tests/resources/TestApplet.java
changeset 0 4f2f89ce4247
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/resources/TestApplet.java	Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,16 @@
+import java.applet.Applet;
+
+public class TestApplet extends Applet {
+    public static int MAGIC_NUMBER = 1;
+    public int field;
+    
+    public void init()
+    {
+        field = MAGIC_NUMBER;
+    }
+    
+    public int method()
+    {
+        return MAGIC_NUMBER;
+    }
+}
\ No newline at end of file