smparkes-envjs 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (186) hide show
  1. data/bin/envjsrb +157 -73
  2. data/bin/jquery-1.3.2-test.js +11 -4
  3. data/lib/envjs/env.js +935 -11028
  4. data/lib/envjs/net/cgi.rb +94 -0
  5. data/lib/envjs/net/file.rb +4 -4
  6. data/lib/envjs/runtime.rb +80 -24
  7. data/test/call-load-test.js +0 -2
  8. data/test/firebug/errorIcon.png +0 -0
  9. data/test/firebug/firebug.css +209 -0
  10. data/test/firebug/firebug.html +23 -0
  11. data/test/firebug/firebug.js +672 -0
  12. data/test/firebug/firebugx.js +10 -0
  13. data/test/firebug/infoIcon.png +0 -0
  14. data/test/firebug/warningIcon.png +0 -0
  15. data/test/fixtures/html/events.html +171 -0
  16. data/test/fixtures/html/iframe1.html +46 -0
  17. data/test/fixtures/html/iframe1a.html +46 -0
  18. data/test/fixtures/html/iframe2.html +45 -0
  19. data/test/fixtures/html/iframe3.html +28 -0
  20. data/test/fixtures/html/iframeN.html +57 -0
  21. data/test/fixtures/html/malformed.html +181 -0
  22. data/test/fixtures/html/scope.html +81 -0
  23. data/test/fixtures/html/trivial.html +19 -0
  24. data/test/fixtures/html/with_js.html +26 -0
  25. data/test/fixtures/images/icon-blue.png +0 -0
  26. data/test/fixtures/js/external_script.js +1 -0
  27. data/test/fixtures/js/script.js +1 -0
  28. data/test/fixtures/js/script_error.js +2 -0
  29. data/test/html/malformed.html +1 -0
  30. data/test/index.html +21 -19
  31. data/test/{primaryTests.js → primary-tests.js} +1 -3
  32. data/test/{prototype.js → prototype-test.js} +0 -2
  33. data/test/qunit/qunit/qunit.css +0 -0
  34. data/test/qunit/qunit/qunit.js +2 -2
  35. data/test/{qunit/qunit/qunit.js.smp → specs/dist/env.spec.js} +539 -7
  36. data/test/specs/envjs.spec.css +46 -0
  37. data/test/specs/parser/html.js +31 -0
  38. data/test/specs/parser/spec.html +40 -0
  39. data/test/specs/parser/xml.js +31 -0
  40. data/test/specs/qunit.bdd.js +210 -0
  41. data/test/{qunit.smp/qunit → specs}/qunit.css +0 -0
  42. data/test/{qunit.smp/qunit → specs}/qunit.js +2 -2
  43. data/test/specs/template/spec-0.js +31 -0
  44. data/test/specs/template/spec-1.js +31 -0
  45. data/test/specs/template/spec.html +40 -0
  46. data/test/specs/window/css.js +23 -0
  47. data/test/specs/window/dialog.js +25 -0
  48. data/test/specs/window/document.js +23 -0
  49. data/test/specs/window/event.js +25 -0
  50. data/test/specs/window/history.js +34 -0
  51. data/test/specs/window/location.js +34 -0
  52. data/test/specs/window/navigator.js +71 -0
  53. data/test/specs/window/screen.js +42 -0
  54. data/test/specs/window/spec.html +48 -0
  55. data/test/specs/window/timer.js +26 -0
  56. data/test/specs/window/window.js +53 -0
  57. data/test/specs/xhr/spec.html +47 -0
  58. data/test/specs/xhr/xhr.js +31 -0
  59. data/test/test.js +10 -0
  60. data/test/unit/elementmembers.js +31 -0
  61. data/test/unit/nu.validator.js +34 -0
  62. data/test/unit/onload.js +1 -3
  63. data/test/unit/parser.js +106 -98
  64. data/test/unit/prototypecompat.js +2 -2
  65. data/test/vendor/jQuery/1.3.2/ChangeLog.txt +98 -0
  66. data/test/vendor/jQuery/1.3.2/GPL-LICENSE.txt +278 -0
  67. data/test/vendor/jQuery/1.3.2/MIT-LICENSE.txt +20 -0
  68. data/test/vendor/jQuery/1.3.2/Makefile +154 -0
  69. data/test/vendor/jQuery/1.3.2/README +67 -0
  70. data/test/vendor/jQuery/1.3.2/build/ant-contrib-0.6.jar +0 -0
  71. data/test/vendor/jQuery/1.3.2/build/build/min.js +11 -0
  72. data/test/vendor/jQuery/1.3.2/build/build/pack.js +19 -0
  73. data/test/vendor/jQuery/1.3.2/build/js/Packer.js +209 -0
  74. data/test/vendor/jQuery/1.3.2/build/js/ParseMaster.js +106 -0
  75. data/test/vendor/jQuery/1.3.2/build/js/Words.js +62 -0
  76. data/test/vendor/jQuery/1.3.2/build/js/base2.js +978 -0
  77. data/test/vendor/jQuery/1.3.2/build/js/jsmin.js +316 -0
  78. data/test/vendor/jQuery/1.3.2/build/js/json.js +117 -0
  79. data/test/vendor/jQuery/1.3.2/build/js/pack.js +316 -0
  80. data/test/vendor/jQuery/1.3.2/build/js/parse.js +105 -0
  81. data/test/vendor/jQuery/1.3.2/build/js/writeFile.js +19 -0
  82. data/test/vendor/jQuery/1.3.2/build/js/xml.js +25 -0
  83. data/test/vendor/jQuery/1.3.2/build/js.jar +0 -0
  84. data/test/vendor/jQuery/1.3.2/build/runtest/env.js +1 -0
  85. data/test/vendor/jQuery/1.3.2/build/runtest/test.js +106 -0
  86. data/test/vendor/jQuery/1.3.2/build/runtest/testrunner.js +197 -0
  87. data/test/vendor/jQuery/1.3.2/build/speed/benchmarker.css +65 -0
  88. data/test/vendor/jQuery/1.3.2/build/speed/benchmarker.js +181 -0
  89. data/test/vendor/jQuery/1.3.2/build/speed/index.html +72 -0
  90. data/test/vendor/jQuery/1.3.2/build/speed/jquery-basis.js +3549 -0
  91. data/test/vendor/jQuery/1.3.2/build/style.xsl +99 -0
  92. data/test/vendor/jQuery/1.3.2/build/yuicompressor-2.4.2.jar +0 -0
  93. data/test/vendor/jQuery/1.3.2/build.xml +123 -0
  94. data/test/vendor/jQuery/1.3.2/dist/jquery.js +4376 -0
  95. data/test/vendor/jQuery/1.3.2/reminder.txt +3 -0
  96. data/test/vendor/jQuery/1.3.2/src/ajax.js +541 -0
  97. data/test/vendor/jQuery/1.3.2/src/core.js +1255 -0
  98. data/test/vendor/jQuery/1.3.2/src/data.js +145 -0
  99. data/test/vendor/jQuery/1.3.2/src/dimensions.js +49 -0
  100. data/test/vendor/jQuery/1.3.2/src/event.js +684 -0
  101. data/test/vendor/jQuery/1.3.2/src/fx.js +407 -0
  102. data/test/vendor/jQuery/1.3.2/src/intro.js +13 -0
  103. data/test/vendor/jQuery/1.3.2/src/offset.js +155 -0
  104. data/test/vendor/jQuery/1.3.2/src/outro.js +1 -0
  105. data/test/vendor/jQuery/1.3.2/src/selector.js +1015 -0
  106. data/test/vendor/jQuery/1.3.2/src/support.js +112 -0
  107. data/test/vendor/jQuery/1.3.2/test/data/cow.jpg +0 -0
  108. data/test/vendor/jQuery/1.3.2/test/data/dashboard.xml +11 -0
  109. data/test/vendor/jQuery/1.3.2/test/data/echoQuery.php +1 -0
  110. data/test/vendor/jQuery/1.3.2/test/data/iframe.html +8 -0
  111. data/test/vendor/jQuery/1.3.2/test/data/json.php +9 -0
  112. data/test/vendor/jQuery/1.3.2/test/data/json_assigned_obj.js +1 -0
  113. data/test/vendor/jQuery/1.3.2/test/data/json_obj.js +1 -0
  114. data/test/vendor/jQuery/1.3.2/test/data/jsonp.php +10 -0
  115. data/test/vendor/jQuery/1.3.2/test/data/name.html +1 -0
  116. data/test/vendor/jQuery/1.3.2/test/data/name.php +29 -0
  117. data/test/vendor/jQuery/1.3.2/test/data/offset/absolute.html +39 -0
  118. data/test/vendor/jQuery/1.3.2/test/data/offset/body.html +24 -0
  119. data/test/vendor/jQuery/1.3.2/test/data/offset/fixed.html +33 -0
  120. data/test/vendor/jQuery/1.3.2/test/data/offset/relative.html +31 -0
  121. data/test/vendor/jQuery/1.3.2/test/data/offset/scroll.html +39 -0
  122. data/test/vendor/jQuery/1.3.2/test/data/offset/static.html +31 -0
  123. data/test/vendor/jQuery/1.3.2/test/data/offset/table.html +43 -0
  124. data/test/vendor/jQuery/1.3.2/test/data/params_html.php +12 -0
  125. data/test/vendor/jQuery/1.3.2/test/data/test.html +7 -0
  126. data/test/vendor/jQuery/1.3.2/test/data/test.js +3 -0
  127. data/test/vendor/jQuery/1.3.2/test/data/test.php +7 -0
  128. data/test/vendor/jQuery/1.3.2/test/data/test2.html +5 -0
  129. data/test/vendor/jQuery/1.3.2/test/data/test3.html +3 -0
  130. data/test/vendor/jQuery/1.3.2/test/data/testrunner.js +1 -0
  131. data/test/vendor/jQuery/1.3.2/test/data/text.php +12 -0
  132. data/test/vendor/jQuery/1.3.2/test/data/with_fries.xml +25 -0
  133. data/test/vendor/jQuery/1.3.2/test/index.html +229 -0
  134. data/test/vendor/jQuery/1.3.2/test/jqenv-1259090275493.html +247 -0
  135. data/test/vendor/jQuery/1.3.2/test/jqenv-1259091671501.html +247 -0
  136. data/test/vendor/jQuery/1.3.2/test/jqenv-1259175319655.html +247 -0
  137. data/test/vendor/jQuery/1.3.2/test/offset.html +28 -0
  138. data/test/vendor/jQuery/1.3.2/test/otherlibs/jquery/1.2.1/jquery.js +11 -0
  139. data/test/vendor/jQuery/1.3.2/test/otherlibs/jquery/1.2.3/jquery.js +11 -0
  140. data/test/vendor/jQuery/1.3.2/test/otherlibs/mootools/1.11/mootools.js +1577 -0
  141. data/test/vendor/jQuery/1.3.2/test/otherlibs/prototype/1.6.0.2/prototype.js +4221 -0
  142. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.7.0/builder.js +131 -0
  143. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.7.0/controls.js +835 -0
  144. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.7.0/dragdrop.js +944 -0
  145. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.7.0/effects.js +1090 -0
  146. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.7.0/scriptaculous.js +51 -0
  147. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.7.0/slider.js +278 -0
  148. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.7.0/unittest.js +564 -0
  149. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.8.1/builder.js +136 -0
  150. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.8.1/controls.js +965 -0
  151. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.8.1/dragdrop.js +974 -0
  152. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.8.1/effects.js +1122 -0
  153. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.8.1/scriptaculous.js +58 -0
  154. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.8.1/slider.js +275 -0
  155. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.8.1/sound.js +55 -0
  156. data/test/vendor/jQuery/1.3.2/test/otherlibs/scriptaculous/1.8.1/unittest.js +568 -0
  157. data/test/vendor/jQuery/1.3.2/test/polluted.php +64 -0
  158. data/test/vendor/jQuery/1.3.2/test/qunit/testrunner.js +780 -0
  159. data/test/vendor/jQuery/1.3.2/test/qunit/testsuite.css +120 -0
  160. data/test/vendor/jQuery/1.3.2/test/test.js +41 -0
  161. data/test/vendor/jQuery/1.3.2/test/unit/ajax.js +856 -0
  162. data/test/vendor/jQuery/1.3.2/test/unit/core.js +1872 -0
  163. data/test/vendor/jQuery/1.3.2/test/unit/data.js +160 -0
  164. data/test/vendor/jQuery/1.3.2/test/unit/dimensions.js +86 -0
  165. data/test/vendor/jQuery/1.3.2/test/unit/event.js +670 -0
  166. data/test/vendor/jQuery/1.3.2/test/unit/fx.js +451 -0
  167. data/test/vendor/jQuery/1.3.2/test/unit/offset.js +173 -0
  168. data/test/vendor/jQuery/1.3.2/test/unit/selector.js +395 -0
  169. data/test/vendor/jQuery/1.3.2/test/xhtml.php +5 -0
  170. data/test/vendor/jQuery/1.3.2/version.txt +1 -0
  171. metadata +158 -22
  172. data/lib/envjs/runtime.rb.smp +0 -133
  173. data/test/envjs-call-load-test.js +0 -5
  174. data/test/envjs-prototype.js +0 -5
  175. data/test/qunit/package.json +0 -21
  176. data/test/qunit/test/index.html +0 -17
  177. data/test/qunit/test/same.js +0 -1368
  178. data/test/qunit/test/test.js +0 -136
  179. data/test/qunit.smp/package.json +0 -21
  180. data/test/qunit.smp/test/index.html +0 -17
  181. data/test/qunit.smp/test/same.js +0 -1368
  182. data/test/qunit.smp/test/test.js +0 -136
  183. data/test/rhino-call-load-test.js +0 -5
  184. data/test/rhino-prototype.js +0 -5
  185. data/test/test-with-envs-jar.js +0 -8
  186. data/test/test-with-rhino-jar.js +0 -9
@@ -0,0 +1,229 @@
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
+ <link rel="Stylesheet" media="screen" href="qunit/testsuite.css" />
7
+ <!-- Includes -->
8
+ <script type="text/javascript">
9
+ var jQuery = this.jQuery || "jQuery", // For testing .noConflict()
10
+ $ = this.$ || "$",
11
+ originaljQuery = jQuery,
12
+ original$ = $;
13
+ </script>
14
+ <script type="text/javascript" src="../dist/jquery.js"></script>
15
+ <script type="text/javascript" src="qunit/testrunner.js"></script>
16
+ <script type="text/javascript" src="data/testrunner.js"></script>
17
+ <script type="text/javascript" src="unit/core.js"></script>
18
+ <script type="text/javascript" src="unit/data.js"></script>
19
+ <script type="text/javascript" src="unit/dimensions.js"></script>
20
+ <script type="text/javascript" src="unit/selector.js"></script>
21
+ <script type="text/javascript" src="unit/event.js"></script>
22
+ <script type="text/javascript" src="unit/ajax.js"></script>
23
+ <script type="text/javascript" src="unit/fx.js"></script>
24
+ </head>
25
+
26
+ <body id="body">
27
+ <h1 id="header">jQuery Test Suite</h1>
28
+ <h2 id="banner"></h2>
29
+ <h2 id="userAgent"></h2>
30
+
31
+ <!-- Test HTML -->
32
+ <div id="nothiddendiv" style="height:1px;background:white;" class="nothiddendiv">
33
+ <div id="nothiddendivchild"></div>
34
+ </div>
35
+ <!-- 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 -->
36
+ <iframe id="loadediframe" name="loadediframe" style="display:none;" src="data/iframe.html"></iframe>
37
+ <dl id="dl" style="display:none;">
38
+ <div id="main" style="display: none;">
39
+ <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>
40
+ <p id="ap">
41
+ Here are some links in a normal paragraph: <a id="google" href="http://www.google.com/" title="Google!">Google</a>,
42
+ <a id="groups" href="http://groups.google.com/" class="GROUPS">Google Groups (Link)</a>.
43
+ This link has <code><a href="http://smin" id="anchor1">class="blog"</a></code>:
44
+ <a href="http://diveintomark.org/" class="blog" hreflang="en" id="mark">diveintomark</a>
45
+
46
+ </p>
47
+ <div id="foo">
48
+ <p id="sndp">Everything inside the red border is inside a div with <code>id="foo"</code>.</p>
49
+ <p lang="en" id="en">This is a normal link: <a id="yahoo" href="http://www.yahoo.com/" class="blogTest">Yahoo</a></p>
50
+ <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>
51
+
52
+ </div>
53
+ <span id="name+value"></span>
54
+ <p id="first">Try them out:</p>
55
+ <ul id="firstUL"></ul>
56
+ <ol id="empty"></ol>
57
+ <form id="form" action="formaction">
58
+ <label for="action" id="label-for">Action:</label>
59
+ <input type="text" name="action" value="Test" id="text1" maxlength="30"/>
60
+ <input type="text" name="text2" value="Test" id="text2" disabled="disabled"/>
61
+ <input type="radio" name="radio1" id="radio1" value="on"/>
62
+
63
+ <input type="radio" name="radio2" id="radio2" checked="checked"/>
64
+ <input type="checkbox" name="check" id="check1" checked="checked"/>
65
+ <input type="checkbox" id="check2" value="on"/>
66
+
67
+ <input type="hidden" name="hidden" id="hidden1"/>
68
+ <input type="text" style="display:none;" name="foo[bar]" id="hidden2"/>
69
+
70
+ <input type="text" id="name" name="name" value="name" />
71
+ <input type="search" id="search" name="search" value="search" />
72
+
73
+ <button id="button" name="button">Button</button>
74
+
75
+ <textarea id="area1" maxlength="30">foobar</textarea>
76
+
77
+ <select name="select1" id="select1">
78
+ <option id="option1a" class="emptyopt" value="">Nothing</option>
79
+ <option id="option1b" value="1">1</option>
80
+ <option id="option1c" value="2">2</option>
81
+ <option id="option1d" value="3">3</option>
82
+ </select>
83
+ <select name="select2" id="select2">
84
+ <option id="option2a" class="emptyopt" value="">Nothing</option>
85
+ <option id="option2b" value="1">1</option>
86
+ <option id="option2c" value="2">2</option>
87
+ <option id="option2d" selected="selected" value="3">3</option>
88
+ </select>
89
+ <select name="select3" id="select3" multiple="multiple">
90
+ <option id="option3a" class="emptyopt" value="">Nothing</option>
91
+ <option id="option3b" selected="selected" value="1">1</option>
92
+ <option id="option3c" selected="selected" value="2">2</option>
93
+ <option id="option3d" value="3">3</option>
94
+ <option id="option3e">no value</option>
95
+ </select>
96
+
97
+ <object id="object1" codebase="stupid">
98
+ <param name="p1" value="x1" />
99
+ <param name="p2" value="x2" />
100
+ </object>
101
+
102
+ <span id="台北Táiběi"></span>
103
+ <span id="台北" lang="中文"></span>
104
+ <span id="utf8class1" class="台北Táiběi 台北"></span>
105
+ <span id="utf8class2" class="台北"></span>
106
+ <span id="foo:bar" class="foo:bar"></span>
107
+ <span id="test.foo[5]bar" class="test.foo[5]bar"></span>
108
+
109
+ <foo_bar id="foobar">test element</foo_bar>
110
+ </form>
111
+ <b id="floatTest">Float test.</b>
112
+ <iframe id="iframe" name="iframe"></iframe>
113
+ <form id="lengthtest">
114
+ <input type="text" id="length" name="test"/>
115
+ <input type="text" id="idTest" name="id"/>
116
+ </form>
117
+ <table id="table"></table>
118
+
119
+ <form id="name-tests">
120
+ <!-- Inputs with a grouped name attribute. -->
121
+ <input name="types[]" id="types_all" type="checkbox" value="all" />
122
+ <input name="types[]" id="types_anime" type="checkbox" value="anime" />
123
+ <input name="types[]" id="types_movie" type="checkbox" value="movie" />
124
+ </form>
125
+
126
+ <form id="testForm" action="#" method="get">
127
+ <textarea name="T3" rows="2" cols="15">?
128
+ Z</textarea>
129
+ <input type="hidden" name="H1" value="x" />
130
+ <input type="hidden" name="H2" />
131
+ <input name="PWD" type="password" value="" />
132
+ <input name="T1" type="text" />
133
+ <input name="T2" type="text" value="YES" readonly="readonly" />
134
+ <input type="checkbox" name="C1" value="1" />
135
+ <input type="checkbox" name="C2" />
136
+ <input type="radio" name="R1" value="1" />
137
+ <input type="radio" name="R1" value="2" />
138
+ <input type="text" name="My Name" value="me" />
139
+ <input type="reset" name="reset" value="NO" />
140
+ <select name="S1">
141
+ <option value="abc">ABC</option>
142
+ <option value="abc">ABC</option>
143
+ <option value="abc">ABC</option>
144
+ </select>
145
+ <select name="S2" multiple="multiple" size="3">
146
+ <option value="abc">ABC</option>
147
+ <option value="abc">ABC</option>
148
+ <option value="abc">ABC</option>
149
+ </select>
150
+ <select name="S3">
151
+ <option selected="selected">YES</option>
152
+ </select>
153
+ <select name="S4">
154
+ <option value="" selected="selected">NO</option>
155
+ </select>
156
+ <input type="submit" name="sub1" value="NO" />
157
+ <input type="submit" name="sub2" value="NO" />
158
+ <input type="image" name="sub3" value="NO" />
159
+ <button name="sub4" type="submit" value="NO">NO</button>
160
+ <input name="D1" type="text" value="NO" disabled="disabled" />
161
+ <input type="checkbox" checked="checked" disabled="disabled" name="D2" value="NO" />
162
+ <input type="radio" name="D3" value="NO" checked="checked" disabled="disabled" />
163
+ <select name="D4" disabled="disabled">
164
+ <option selected="selected" value="NO">NO</option>
165
+ </select>
166
+ </form>
167
+ <div id="moretests">
168
+ <form>
169
+ <div id="checkedtest" style="display:none;">
170
+ <input type="radio" name="checkedtestradios" checked="checked"/>
171
+ <input type="radio" name="checkedtestradios" value="on"/>
172
+ <input type="checkbox" name="checkedtestcheckboxes" checked="checked"/>
173
+ <input type="checkbox" name="checkedtestcheckboxes" />
174
+ </div>
175
+ </form>
176
+ <div id="nonnodes"><span>hi</span> there <!-- mon ami --></div>
177
+ <div id="t2037">
178
+ <div><div class="hidden">hidden</div></div>
179
+ </div>
180
+ </div>
181
+
182
+ <div id="tabindex-tests">
183
+ <ol id="listWithTabIndex" tabindex="5">
184
+ <li id="foodWithNegativeTabIndex" tabindex="-1">Rice</li>
185
+ <li id="foodNoTabIndex">Beans</li>
186
+ <li>Blinis</li>
187
+ <li>Tofu</li>
188
+ </ol>
189
+
190
+ <div id="divWithNoTabIndex">I'm hungry. I should...</div>
191
+ <span>...</span><a href="#" id="linkWithNoTabIndex">Eat lots of food</a><span>...</span> |
192
+ <span>...</span><a href="#" id="linkWithTabIndex" tabindex="2">Eat a little food</a><span>...</span> |
193
+ <span>...</span><a href="#" id="linkWithNegativeTabIndex" tabindex="-1">Eat no food</a><span>...</span>
194
+ <span>...</span><a id="linkWithNoHrefWithNoTabIndex">Eat a burger</a><span>...</span>
195
+ <span>...</span><a id="linkWithNoHrefWithTabIndex" tabindex="1">Eat some funyuns</a><span>...</span>
196
+ <span>...</span><a id="linkWithNoHrefWithNegativeTabIndex" tabindex="-1">Eat some funyuns</a><span>...</span>
197
+ </div>
198
+
199
+ <div id="liveHandlerOrder">
200
+ <span id="liveSpan1"><a href="#" id="liveLink1"></a></span>
201
+ <span id="liveSpan2"><a href="#" id="liveLink2"></a></span>
202
+ </div>
203
+ </div>
204
+ </dl>
205
+ <div id="fx-test-group" style="width:1px;height:1px;overflow:hidden;">
206
+ <div id="fx-queue" name="test">
207
+ <div id="fadein" class='chain test' name='div'>fadeIn<div>fadeIn</div></div>
208
+ <div id="fadeout" class='chain test out'>fadeOut<div>fadeOut</div></div>
209
+
210
+ <div id="show" class='chain test'>show<div>show</div></div>
211
+ <div id="hide" class='chain test out'>hide<div>hide</div></div>
212
+
213
+ <div id="togglein" class='chain test'>togglein<div>togglein</div></div>
214
+ <div id="toggleout" class='chain test out'>toggleout<div>toggleout</div></div>
215
+
216
+
217
+ <div id="slideup" class='chain test'>slideUp<div>slideUp</div></div>
218
+ <div id="slidedown" class='chain test out'>slideDown<div>slideDown</div></div>
219
+
220
+ <div id="slidetogglein" class='chain test'>slideToggleIn<div>slideToggleIn</div></div>
221
+ <div id="slidetoggleout" class='chain test out'>slideToggleOut<div>slideToggleOut</div></div>
222
+ </div>
223
+
224
+ <div id="fx-tests"></div>
225
+ </div>
226
+
227
+ <ol id="tests"></ol>
228
+ </body>
229
+ </html>