smparkes-envjs 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. data/README +101 -0
  2. data/bin/envjsrb +147 -0
  3. data/bin/jquery-1.2.6-test.js +33 -0
  4. data/bin/jquery-1.3.1-test.js +33 -0
  5. data/bin/jquery-1.3.2-test.js +98 -0
  6. data/bin/prototype-1.6.0.3-test.js +82 -0
  7. data/bin/prototype_1.6.0.3_tmpl.txt +27 -0
  8. data/bin/test-jquery.sh +58 -0
  9. data/bin/test-prototype.sh +54 -0
  10. data/bin/tidy +0 -0
  11. data/lib/envjs/env.js +10423 -0
  12. data/lib/envjs/net/file.rb +71 -0
  13. data/lib/envjs/net.rb +3 -0
  14. data/lib/envjs/runtime.rb +132 -0
  15. data/lib/envjs/runtime.rb.smp +133 -0
  16. data/lib/envjs/tempfile.rb +24 -0
  17. data/lib/envjs.rb +23 -0
  18. data/test/call-load-test.js +17 -0
  19. data/test/debug.js +53 -0
  20. data/test/envjs-call-load-test.js +3 -0
  21. data/test/envjs-prototype.js +3 -0
  22. data/test/html/events.html +171 -0
  23. data/test/html/iframe1.html +46 -0
  24. data/test/html/iframe1a.html +46 -0
  25. data/test/html/iframe2.html +45 -0
  26. data/test/html/iframe3.html +30 -0
  27. data/test/html/iframeN.html +57 -0
  28. data/test/html/scope.html +87 -0
  29. data/test/html/trivial.html +19 -0
  30. data/test/html/with_js.html +26 -0
  31. data/test/index.html +304 -0
  32. data/test/java-prototype.js +9 -0
  33. data/test/primaryTests.js +26 -0
  34. data/test/prototype.js +15 -0
  35. data/test/qunit/package.json +21 -0
  36. data/test/qunit/qunit/qunit.css +17 -0
  37. data/test/qunit/qunit/qunit.js +997 -0
  38. data/test/qunit/qunit/qunit.js.smp +1002 -0
  39. data/test/qunit/test/index.html +17 -0
  40. data/test/qunit/test/same.js +1368 -0
  41. data/test/qunit/test/test.js +136 -0
  42. data/test/qunit.js +61 -0
  43. data/test/qunit.smp/package.json +21 -0
  44. data/test/qunit.smp/qunit/qunit.css +17 -0
  45. data/test/qunit.smp/qunit/qunit.js +997 -0
  46. data/test/qunit.smp/test/index.html +17 -0
  47. data/test/qunit.smp/test/same.js +1368 -0
  48. data/test/qunit.smp/test/test.js +136 -0
  49. data/test/rhino-call-load-test.js +5 -0
  50. data/test/test-with-envs-jar.js +8 -0
  51. data/test/test-with-rhino-jar.js +9 -0
  52. data/test/unit/dom.js +43 -0
  53. data/test/unit/elementmembers.js +29 -0
  54. data/test/unit/events.js +195 -0
  55. data/test/unit/fixtures/external_script.js +1 -0
  56. data/test/unit/iframe.js +234 -0
  57. data/test/unit/multi-window.js +212 -0
  58. data/test/unit/onload.js +82 -0
  59. data/test/unit/parser.js +113 -0
  60. data/test/unit/prototypecompat.js +22 -0
  61. data/test/unit/proxy.js +6 -0
  62. data/test/unit/scope.js +209 -0
  63. data/test/unit/timer.js +115 -0
  64. data/test/unit/window.js +41 -0
  65. data/test/vendor/jQuery/README +2 -0
  66. data/test/vendor/prototype-1.6.0.3.js +4320 -0
  67. metadata +130 -0
@@ -0,0 +1,46 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+
3
+ <!--
4
+ * This file is a component of env.js,
5
+ * http://github.com/gleneivey/env-js/commits/master/README
6
+ * a Pure JavaScript Browser Environment
7
+ * Copyright 2009 John Resig, licensed under the MIT License
8
+ * http://www.opensource.org/licenses/mit-license.php
9
+ -->
10
+
11
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
12
+ lang="en" dir="ltr" id="html">
13
+ <head>
14
+ <title>Content document 'iframe1a.html' for env.js unit test suite</title>
15
+ </head>
16
+ <body onload="checkEventsWithinIframe();">
17
+ <quote id="anotherElementWithText">
18
+ This is the text content of a block-quote element.
19
+ </quote>
20
+
21
+ <!-- elements and scripting here match test cases in ../unit/window.js -->
22
+ <script>//ensure that we can execute JS inline while loading
23
+ document.write(
24
+ '\x3cp id="js_generated_p"\x3eDynamically-generated\x3c/p\x3e');
25
+ </script>
26
+
27
+ <script>//verify that our "document" object actually points to this page
28
+ document.write('\x3cp id="internalDocRefResult"\x3e');
29
+ if (document.getElementById('anElementWithText'))
30
+ document.write("First paragraph element exists-found.");
31
+ else
32
+ document.write("Eeek! Didn't find paragraph id=anElementWithText.");
33
+ document.write('\x3c/p\x3e');
34
+ </script>
35
+
36
+ <script>// append 'p id=appended "An appended paragraph"' to doc....
37
+ function checkEventsWithinIframe(){
38
+ var t = document.createTextNode("An appended paragraph");
39
+ var p = document.createElement("p");
40
+ p.setAttribute("id", "appended");
41
+ p.appendChild(t);
42
+ document.getElementsByTagName('body')[0].appendChild(p);
43
+ }
44
+ </script>
45
+ </body>
46
+ </html>
@@ -0,0 +1,45 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <!--
5
+ * This file is a component of env.js,
6
+ * http://github.com/gleneivey/env-js/commits/master/README
7
+ * a Pure JavaScript Browser Environment
8
+ * Copyright 2009 John Resig, licensed under the MIT License
9
+ * http://www.opensource.org/licenses/mit-license.php
10
+ -->
11
+
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
13
+ lang="en" dir="ltr" id="html">
14
+ <head>
15
+ <title>Content document for IFRAME loading in env.js unit test suite</title>
16
+ </head>
17
+ <body>
18
+ <p id="aParaInAnIframe">
19
+ Here is a short paragraph.
20
+ </p>
21
+
22
+ <p id="nestingLevel">2</p>
23
+ <p>
24
+ The preceding is the seed value for the automatic iframe-nesting
25
+ count generation in <code>iframeN.html</code>, used by the nesting
26
+ test in <code>../unit/frame.js</code>. Value must be equal to the
27
+ test's 'startingDepth' variable, minus 1, for things to work.
28
+ </p>
29
+
30
+ <!-- abbreviated copy of code also in iframeN.html -->
31
+ <script>
32
+ function aPara(pId, pText){
33
+ var t = document.createTextNode(pText + " 1");
34
+ var p = document.createElement('p');
35
+ p.setAttribute('id', pId + "1");
36
+ p.appendChild(t);
37
+ document.getElementsByTagName('body')[0].appendChild(p);
38
+ }
39
+
40
+ function iframeOnloadHandler(){ aPara("pCreatedIframeOnload",
41
+ "para iframe onload");
42
+ window.top.frameLoadCount++; }
43
+ </script>
44
+ </body>
45
+ </html>
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <!--
5
+ * This file is a component of env.js,
6
+ * http://github.com/gleneivey/env-js/commits/master/README
7
+ * a Pure JavaScript Browser Environment
8
+ * Copyright 2009 John Resig, licensed under the MIT License
9
+ * http://www.opensource.org/licenses/mit-license.php
10
+ -->
11
+
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
13
+ lang="en" dir="ltr" id="html">
14
+ <head>
15
+ <title>Content document for nested-IFRAME testing in env.js</title>
16
+ </head>
17
+ <body>
18
+ <p id="firstPara">
19
+ First paragraph in <code>iframe.3.html</code>.
20
+ </p>
21
+
22
+ <!-- CHECK: under java, this has been html/iframe2.html, but
23
+ shouldn't loc be relative to this window? -->
24
+ <iframe id="nested1Level" name="nested1Level" src="iframe2.html"></iframe>
25
+
26
+ <p id="lastPara">
27
+ Last paragraph in <code>iframe.3.html</code>.
28
+ </p>
29
+ </body>
30
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <!--
5
+ * This file is a component of env.js,
6
+ * http://github.com/gleneivey/env-js/commits/master/README
7
+ * a Pure JavaScript Browser Environment
8
+ * Copyright 2009 John Resig, licensed under the MIT License
9
+ * http://www.opensource.org/licenses/mit-license.php
10
+ -->
11
+
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
13
+ lang="en" dir="ltr" id="html">
14
+ <head>
15
+ <title>Document for testing arbitrary-depth IFRAME nesting in env.js</title>
16
+ </head>
17
+ <body onload="bodyOnloadHandler();">
18
+ <script>
19
+ window.top.numberNestedIframeLoads += 1;
20
+ function aPara(pId, pText, n){
21
+ var t = document.createTextNode(pText + " " + n);
22
+ var p = document.createElement('p');
23
+ p.setAttribute('id', pId + n);
24
+ p.appendChild(t);
25
+ document.getElementsByTagName('body')[0].appendChild(p);
26
+ }
27
+
28
+ window.onload = function(){ aPara("pCreatedWindowOnload",
29
+ "para window onload",
30
+ window.top.numberNestedIframeLoads);
31
+ window.top.winLoadCount += 1; }
32
+ function bodyOnloadHandler(){ aPara("pCreatedBodyOnload",
33
+ "para body onload",
34
+ window.top.numberNestedIframeLoads);
35
+ window.top.bodyLoadCount += 1; }
36
+ function iframeOnloadHandler(){ aPara("pCreatedIframeOnload",
37
+ "para iframe onload",
38
+ window.top.numberNestedIframeLoads);
39
+ window.top.frameLoadCount += 1; }
40
+ </script>
41
+
42
+ <p>
43
+ This document will be loaded into an IFRAME, and the following
44
+ JavaScript finds an element in the parent document that contains
45
+ the nesting level count, increments it, and then produces an
46
+ identical element with the result in this document.
47
+
48
+ <script>
49
+ var counterAsText = window.parent.document.
50
+ getElementById('nestingLevel').innerHTML;
51
+ var newCount = parseInt(counterAsText) + 1;
52
+ document.write('\x3cspan id="nestingLevel"\x3e' + newCount +
53
+ '\x3c/span\x3e');
54
+ </script>
55
+ </p>
56
+ </body>
57
+ </html>
@@ -0,0 +1,87 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+
3
+ <!--
4
+ * This file is a component of env.js,
5
+ * http://github.com/gleneivey/env-js/commits/master/README
6
+ * a Pure JavaScript Browser Environment
7
+ * Copyright 2009 John Resig, licensed under the MIT License
8
+ * http://www.opensource.org/licenses/mit-license.php
9
+ -->
10
+
11
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
12
+ lang="en" dir="ltr" id="html">
13
+ <head>
14
+ <title>(event handler) scope testing, env.js units, IFRAME content page
15
+ </title>
16
+ </head>
17
+ <body>
18
+ <script>
19
+ function appendAPara(doc, target, pId, pMsg){
20
+ var t = doc.createTextNode(pMsg);
21
+ var p = doc.createElement("p");
22
+ p.setAttribute("id", pId);
23
+ p.appendChild(t);
24
+ target.appendChild(p);
25
+ }
26
+
27
+ function makeAPara(){
28
+ var paraText =
29
+ "This is a paragraph, made dynamically, with the following components: ";
30
+ for (var i=1; (i) != arguments.length; i++)
31
+ paraText += "--" + arguments[i] + "-- ";
32
+ appendAPara(document, document.getElementById('div1'),
33
+ arguments[0], paraText);
34
+ }
35
+
36
+ aVar = "Strict";
37
+ function checkLexicalScoping(target){
38
+ appendAPara(document, target, "lex",
39
+ "Lexical scoping is " + aVar);
40
+ }
41
+
42
+ // these variables are used in the script block for div3, below.
43
+ // Intentionally not using 'var' so these go into the global space
44
+ bVar = 42;
45
+ target = 'p7';
46
+ </script>
47
+
48
+ <img id="img1" src="img.png" onclick="appendAPara(document, document.getElementsByTagName('body')[0], 'p1', 'img1 click');" />
49
+
50
+ <div id="div1"
51
+ onclick="appendAPara(document, this, 'p2', 'div1 click');" >
52
+ This div has some unencapsulated text in it, which we'll follow
53
+ with a 'p' element.
54
+ </div>
55
+
56
+ <div id="div1a"
57
+ onclick="try { var x = $env;} catch(e){ appendAPara(document, this, 'p2a', 'div1a click') };" >
58
+ This div has some unencapsulated text in it, which we'll follow
59
+ with a 'p' element.
60
+ </div>
61
+
62
+ <div id="div2" align="center"
63
+ onclick="aVar='Overridden!'; checkLexicalScoping(this);">
64
+ <form id="form1" action="post-url" method="post">
65
+ <input id="text1" type="text" size="42"
66
+ onchange="makeAPara('p3', value, type, size, action, align);"
67
+ />
68
+ </form>
69
+ </div>
70
+
71
+ <div id="div3">
72
+ <p id="p4">
73
+ More text. This time, expect event handler to append another
74
+ sentence to this paragraph.
75
+ </p>
76
+ </div>
77
+ <script>
78
+ target = "p4"; // already defined in global, so modify not redefine
79
+ document.getElementById('div3').onclick = function(){
80
+ var targetElement = document.getElementById(target);
81
+ var t = document.createTextNode("Third sentence contains the number " +
82
+ bVar + ".");
83
+ targetElement.appendChild(t);
84
+ }
85
+ </script>
86
+ </body>
87
+ </html>
@@ -0,0 +1,19 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+
3
+ <!--
4
+ * This file is a component of env.js,
5
+ * http://github.com/gleneivey/env-js/commits/master/README
6
+ * a Pure JavaScript Browser Environment
7
+ * Copyright 2009 John Resig, licensed under the MIT License
8
+ * http://www.opensource.org/licenses/mit-license.php
9
+ -->
10
+
11
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
12
+ lang="en" dir="ltr" id="html">
13
+ <head>
14
+ <title>Nearly-empty HTML page</title>
15
+ </head>
16
+ <body>
17
+ <p id="oneP">Nearly-empty HTML page</p>
18
+ </body>
19
+ </html>
@@ -0,0 +1,26 @@
1
+ <html>
2
+ <head>
3
+ <script type="text/javascript">
4
+ var x = true;
5
+ if(1 == 1 && 2 == 3)
6
+ x = false;
7
+ </script>
8
+ </head>
9
+ <body>
10
+ <h1 id="HeaderLevel1">Hello, &quot;World&quot;!</h1>
11
+
12
+ <script type="text/javascript">
13
+ aWindowScopeVariable = "hello, scope";
14
+ function getTestVariables(){
15
+ var testVal = null;
16
+ try { testVal = notAlwaysPresentVariable; }
17
+ catch (e){}
18
+
19
+ return [ aWindowScopeVariable, testVal ];
20
+ }
21
+ function setTestVariable(newValue){
22
+ notAlwaysPresentVariable = newValue;
23
+ }
24
+ </script>
25
+ </body>
26
+ </html>
data/test/index.html ADDED
@@ -0,0 +1,304 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr" id="html">
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
+ <title>jQuery Test Suite</title>
6
+
7
+ <script>
8
+ function testLinkOnload(){
9
+ var t = document.createTextNode(
10
+ '#styleCreatedByLinkOnloadEvent { color: red; }');
11
+ var s = document.createElement('style');
12
+ s.setAttribute('id', 'sCreatedByLinkOnload');
13
+ s.appendChild(t);
14
+ document.getElementsByTagName('head')[0].appendChild(s);
15
+ }
16
+ </script>
17
+ <script>
18
+ function testXMLSpecialCharacters(){
19
+ if(true && true && 0>-1){
20
+ var f = 0&1;
21
+ f&=1;
22
+ }
23
+ }
24
+ </script>
25
+ <link rel="Stylesheet" media="screen" href="data/testsuite.css"
26
+ onload="try{testLinkOnload();}catch(e){;}" />
27
+
28
+ <script>var jQuery = "jQuery", $ = "$"; // For testing .noConflict()</script>
29
+ <script type="text/javascript" src="../dist/jquery.js"></script>
30
+ <script type="text/javascript" src="data/testrunner.js"></script>
31
+ <script type="text/javascript" src="unit/core.js"></script>
32
+ <script type="text/javascript" src="unit/dimensions.js"></script>
33
+ <script type="text/javascript" src="unit/selector.js"></script>
34
+ <script type="text/javascript" src="unit/event.js"></script>
35
+ <script type="text/javascript" src="unit/ajax.js"></script>
36
+ <script type="text/javascript" src="unit/fx.js"></script>
37
+ </head>
38
+
39
+ <body id="body">
40
+ <h1 id="header">jQuery Test Suite</h1>
41
+ <h2 id="banner"></h2>
42
+ <h2 id="userAgent"></h2>
43
+
44
+ <!-- Test HTML -->
45
+ <div id="nothiddendiv" style="height:1px;background:white;">
46
+ <div id="nothiddendivchild"></div>
47
+ </div>
48
+
49
+ <!-- this iframe is outside the #main so it won't reload constantly wasting time, but it means the tests must be "safe" and clean up after themselves -->
50
+ <iframe id="loadediframe" name="loadediframe" style="display:none;"
51
+ src="html/iframe1.html">
52
+ <script>
53
+ // kind of a cheat--env.js isn't smart enough to choose between
54
+ // either loading from 'src' or parsing its content, so it
55
+ // does both, which is exploited here to ensure that the
56
+ // onload handler is installed before env.js "finishes
57
+ // loading" (which happens when the /iframe tag is parsed
58
+ var iframeElem = document.getElementById('loadediframe');
59
+ iframeElem.onload = function(){
60
+ var t = document.createTextNode(
61
+ 'Paragraph created by execution of iframe-onload event handler.');
62
+ var p = document.createElement('p');
63
+ p.setAttribute('id', 'pCreatedByIframeOnload');
64
+ p.appendChild(t);
65
+ iframeElem.appendChild(p);
66
+ }
67
+ </script>
68
+ </iframe>
69
+ <iframe id="emptyiframe" name="emtpyiframe" style="display:none;"></iframe>
70
+
71
+ <script>
72
+ var usingEnvjsSpecificJar = false;
73
+ try {
74
+ usingEnvjsSpecificJar = (( this.whichJarFile == "envjs" ) || this.multiwindow);
75
+ } catch (e){;}
76
+ if (usingEnvjsSpecificJar){
77
+ eventFrameLoaded = eventFrameClicked = 0;
78
+ function eventOnloadHandler(){ eventFrameLoaded += 1;}
79
+ function eventOnclickHandler(){ eventFrameClicked += 1;}
80
+
81
+ document.write(' \
82
+ \x3ciframe id="eventsFrame" name="eventsFrame" \
83
+ src="html/events.html" \
84
+ onload="eventOnloadHandler();" \
85
+ onclick="eventOnclickHandler();" \
86
+ \x3e\x3c/iframe\x3e \
87
+ \x3ciframe id="scopeFrame" name="scopeFrame" \
88
+ src="html/scope.html" \
89
+ \x3e\x3c/iframe\x3e \
90
+ ');
91
+ }
92
+ </script>
93
+
94
+ <script>
95
+ function imgOnloadEventHandler(){
96
+ var t = document.createTextNode(
97
+ 'Paragraph created by execution of img-onload event handler.');
98
+ var p = document.createElement('p');
99
+ p.setAttribute('id', 'pCreatedByImgOnload');
100
+ p.appendChild(t);
101
+ document.getElementsByTagName('body')[0].appendChild(p);
102
+ }
103
+ </script>
104
+ <img id="anImg" src="html/img1.png"
105
+ onload="try{imgOnloadEventHandler();}catch(e){;}" />
106
+
107
+ <script>
108
+ function onloadHandlerThatShouldntExecute(){
109
+ var t = document.createTextNode(
110
+ 'Paragraph created by execution of script-onload *BAD* event handler.');
111
+ var p = document.createElement('p');
112
+ p.setAttribute('id', 'pShouldntBeCreated');
113
+ p.appendChild(t);
114
+ document.getElementsByTagName('body')[0].appendChild(p);
115
+ }
116
+ </script>
117
+ <script onload="onloadHandlerThatShouldntExecute();">
118
+ function scriptOnloadEventHandler(tag){
119
+ var t = document.createTextNode(
120
+ 'Paragraph created by execution of script-onload event handler.');
121
+ var p = document.createElement('p');
122
+ p.setAttribute('id', 'pCreatedByScriptOnload'+tag);
123
+ p.appendChild(t);
124
+ document.getElementsByTagName('body')[0].appendChild(p);
125
+ }
126
+ </script>
127
+ <script src="html/missingScript.js"
128
+ onload="try{scriptOnloadEventHandler('A');}catch(e){;}" />
129
+ <script src="html/missingScript.js"
130
+ onload="try{scriptOnloadEventHandler('B');}catch(e){;}"></script>
131
+
132
+
133
+ <dl id="dl" style="display:none;">
134
+ <div id="main" style="display: none;">
135
+ <p id="firstp">See <a id="simon1" href="http://simon.incutio.com/archive/2003/03/25/#getElementsBySelector" rel="bookmark">this blog entry</a> for more information.</p>
136
+ <p id="ap">
137
+ Here are some links in a normal paragraph: <a id="google" href="http://www.google.com/" title="Google!">Google</a>,
138
+ <a id="groups" href="http://groups.google.com/">Google Groups</a>.
139
+ This link has <code><a href="http://smin" id="anchor1">class="blog"</a></code>:
140
+ <a href="http://diveintomark.org/" class="blog" hreflang="en" id="mark">diveintomark</a>
141
+
142
+ </p>
143
+ <div id="foo">
144
+ <p id="sndp">Everything inside the red border is inside a div with <code>id="foo"</code>.</p>
145
+ <p lang="en" id="en">This is a normal link: <a id="yahoo" href="http://www.yahoo.com/" class="blogTest">Yahoo</a></p>
146
+ <p id="sap">This link has <code><a href="#2" id="anchor2">class="blog"</a></code>: <a href="http://simon.incutio.com/" class="blog link" id="simon">Simon Willison's Weblog</a></p>
147
+
148
+ </div>
149
+ <p id="first">Try them out:</p>
150
+ <ul id="firstUL"></ul>
151
+ <ol id="empty"></ol>
152
+ <form id="form" action="formaction">
153
+ <input type="text" name="action" value="Test" id="text1" maxlength="30"/>
154
+ <input type="text" name="text2" value="Test" id="text2" disabled="disabled"/>
155
+ <input type="radio" name="radio1" id="radio1" value="on"/>
156
+
157
+ <input type="radio" name="radio2" id="radio2" checked="checked"/>
158
+ <input type="checkbox" name="check" id="check1" checked="checked"/>
159
+ <input type="checkbox" id="check2" value="on"/>
160
+
161
+ <input type="hidden" name="hidden" id="hidden1"/>
162
+ <input type="text" style="display:none;" name="foo[bar]" id="hidden2"/>
163
+
164
+ <input type="text" id="name" name="name" value="name" />
165
+
166
+ <button id="button" name="button">Button</button>
167
+
168
+ <textarea id="area1" maxlength="30">foobar</textarea>
169
+
170
+ <select name="select1" id="select1">
171
+ <option id="option1a" class="emptyopt" value="">Nothing</option>
172
+ <option id="option1b" value="1">1</option>
173
+ <option id="option1c" value="2">2</option>
174
+ <option id="option1d" value="3">3</option>
175
+ </select>
176
+ <select name="select2" id="select2">
177
+ <option id="option2a" class="emptyopt" value="">Nothing</option>
178
+ <option id="option2b" value="1">1</option>
179
+ <option id="option2c" value="2">2</option>
180
+ <option id="option2d" selected="selected" value="3">3</option>
181
+ </select>
182
+ <select name="select3" id="select3" multiple="multiple">
183
+ <option id="option3a" class="emptyopt" value="">Nothing</option>
184
+ <option id="option3b" selected="selected" value="1">1</option>
185
+ <option id="option3c" selected="selected" value="2">2</option>
186
+ <option id="option3d" value="3">3</option>
187
+ </select>
188
+
189
+ <object id="object1" codebase="stupid">
190
+ <param name="p1" value="x1" />
191
+ <param name="p2" value="x2" />
192
+ </object>
193
+
194
+ <span id="台北Táiběi"></span>
195
+ <span id="台北" lang="中文"></span>
196
+ <span id="utf8class1" class="台北Táiběi 台北"></span>
197
+ <span id="utf8class2" class="台北"></span>
198
+ <span id="foo:bar" class="foo:bar"></span>
199
+ <span id="test.foo[5]bar" class="test.foo[5]bar"></span>
200
+
201
+ <foo_bar id="foobar">test element</foo_bar>
202
+ </form>
203
+ <b id="floatTest">Float test.</b>
204
+ <iframe id="iframe" name="iframe"></iframe>
205
+ <form id="lengthtest">
206
+ <input type="text" id="length" name="test"/>
207
+ <input type="text" id="idTest" name="id"/>
208
+ </form>
209
+ <table id="table"></table>
210
+
211
+ <div id="fx-queue">
212
+ <div id="fadein" class='chain test'>fadeIn<div>fadeIn</div></div>
213
+ <div id="fadeout" class='chain test out'>fadeOut<div>fadeOut</div></div>
214
+
215
+ <div id="show" class='chain test'>show<div>show</div></div>
216
+ <div id="hide" class='chain test out'>hide<div>hide</div></div>
217
+
218
+ <div id="togglein" class='chain test'>togglein<div>togglein</div></div>
219
+ <div id="toggleout" class='chain test out'>toggleout<div>toggleout</div></div>
220
+
221
+
222
+ <div id="slideup" class='chain test'>slideUp<div>slideUp</div></div>
223
+ <div id="slidedown" class='chain test out'>slideDown<div>slideDown</div></div>
224
+
225
+ <div id="slidetogglein" class='chain test'>slideToggleIn<div>slideToggleIn</div></div>
226
+ <div id="slidetoggleout" class='chain test out'>slideToggleOut<div>slideToggleOut</div></div>
227
+ </div>
228
+
229
+ <div id="fx-tests"></div>
230
+
231
+ <form id="testForm" action="#" method="get">
232
+ <textarea name="T3" rows="2" cols="15">?
233
+ Z</textarea>
234
+ <input type="hidden" name="H1" value="x" />
235
+ <input type="hidden" name="H2" />
236
+ <input name="PWD" type="password" value="" />
237
+ <input name="T1" type="text" />
238
+ <input name="T2" type="text" value="YES" readonly="readonly" />
239
+ <input type="checkbox" name="C1" value="1" />
240
+ <input type="checkbox" name="C2" />
241
+ <input type="radio" name="R1" value="1" />
242
+ <input type="radio" name="R1" value="2" />
243
+ <input type="text" name="My Name" value="me" />
244
+ <input type="reset" name="reset" value="NO" />
245
+ <select name="S1">
246
+ <option value="abc">ABC</option>
247
+ <option value="abc">ABC</option>
248
+ <option value="abc">ABC</option>
249
+ </select>
250
+ <select name="S2" multiple="multiple" size="3">
251
+ <option value="abc">ABC</option>
252
+ <option value="abc">ABC</option>
253
+ <option value="abc">ABC</option>
254
+ </select>
255
+ <select name="S3">
256
+ <option selected="selected">YES</option>
257
+ </select>
258
+ <select name="S4">
259
+ <option value="" selected="selected">NO</option>
260
+ </select>
261
+ <input type="submit" name="sub1" value="NO" />
262
+ <input type="submit" name="sub2" value="NO" />
263
+ <input type="image" name="sub3" value="NO" />
264
+ <button name="sub4" type="submit" value="NO">NO</button>
265
+ <input name="D1" type="text" value="NO" disabled="disabled" />
266
+ <input type="checkbox" checked="checked" disabled="disabled" name="D2" value="NO" />
267
+ <input type="radio" name="D3" value="NO" checked="checked" disabled="disabled" />
268
+ <select name="D4" disabled="disabled">
269
+ <option selected="selected" value="NO">NO</option>
270
+ </select>
271
+ </form>
272
+ <div id="moretests">
273
+ <form>
274
+ <div id="checkedtest" style="display:none;">
275
+ <input type="radio" name="checkedtestradios" checked="checked"/>
276
+ <input type="radio" name="checkedtestradios" value="on"/>
277
+ <input type="checkbox" name="checkedtestcheckboxes" checked="checked"/>
278
+ <input type="checkbox" name="checkedtestcheckboxes" />
279
+ </div>
280
+ </form>
281
+ <div id="nonnodes"><span>hi</span> there <!-- mon ami --></div>
282
+ <div id="t2037">
283
+ <div><div class="hidden">hidden</div></div>
284
+ </div>
285
+ </div>
286
+ </div>
287
+ </dl>
288
+
289
+ <ol id="tests"></ol>
290
+
291
+ <!-- test execution of main pages's body-onload tag functionality -->
292
+ <script>
293
+ var bodyElem = document.getElementsByTagName('body')[0];
294
+ bodyElem.onload = function(){
295
+ var t = document.createTextNode(
296
+ 'Look, a dynamically-generated paragraph!');
297
+ var p = document.createElement('p');
298
+ p.setAttribute('id', 'pCreatedByBodyOnload');
299
+ p.appendChild(t);
300
+ bodyElem.appendChild(p);
301
+ }
302
+ </script>
303
+ </body>
304
+ </html>
@@ -0,0 +1,9 @@
1
+ if(!this.whichJarFile){
2
+ whichJarFile = "rhino"
3
+ }
4
+ whichInterpreter = whichJarFile + " interpreter jar";
5
+ if(!this.multiwindow){
6
+ multiwindow = false;
7
+ }
8
+ load("dist/env.rhino.js");
9
+ load("prototype.js");
@@ -0,0 +1,26 @@
1
+ load("test/qunit.js");
2
+
3
+ window.addEventListener("load",function(){
4
+ print("\n\nTesting with " + whichInterpreter);
5
+ print("Handling onload for test.js");
6
+ print("Loading tests.");
7
+
8
+ load( "test/unit/dom.js");
9
+ load("test/unit/window.js");
10
+ load("test/unit/elementmembers.js");
11
+ if (multiwindow) {
12
+ load("test/unit/onload.js");
13
+ load("test/unit/scope.js"); // must come before frame.js changes page content
14
+ load("test/unit/iframe.js");
15
+ load("test/unit/events.js");
16
+ load("test/unit/multi-window.js");
17
+ }
18
+ load("test/unit/parser.js");
19
+ load("test/unit/timer.js");
20
+
21
+ print("Load complete. Running tests.");
22
+ });
23
+
24
+ window.location = "test/index.html";
25
+
26
+ this.Envjs && this.Envjs.wait();