envjs19 0.3.8.20101029121421
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.jslintrbrc +30 -0
- data/.project +17 -0
- data/CHANGELOG.rdoc +57 -0
- data/DTD/xhtml-lat1.ent +196 -0
- data/DTD/xhtml-special.ent +80 -0
- data/DTD/xhtml-symbol.ent +237 -0
- data/DTD/xhtml.soc +14 -0
- data/DTD/xhtml1-frameset.dtd +1235 -0
- data/DTD/xhtml1-strict.dtd +978 -0
- data/DTD/xhtml1-transitional.dtd +1201 -0
- data/DTD/xhtml1.dcl +192 -0
- data/Makefile +7 -0
- data/Manifest.txt +280 -0
- data/README.rdoc +65 -0
- data/Rakefile +196 -0
- data/Wakefile +11 -0
- data/bin/envjsrb +257 -0
- data/build.properties +9 -0
- data/build.xml +247 -0
- data/gm/jquery.js +6002 -0
- data/gm/mainx.js +2648 -0
- data/gm/sensx.js +135 -0
- data/gm/t.js +6 -0
- data/gm/x.html +76 -0
- data/htmlparser/BrowserTreeBuilder.java +456 -0
- data/htmlparser/README +34 -0
- data/htmlparser/build.sh +38 -0
- data/jsl/jsl +0 -0
- data/jsl/jsl.default.conf +129 -0
- data/jsl/jsl.exe +0 -0
- data/lib/envjs.rb +35 -0
- data/lib/envjs/event_loop.js +206 -0
- data/lib/envjs/net.rb +3 -0
- data/lib/envjs/net/cgi.rb +94 -0
- data/lib/envjs/net/file.rb +69 -0
- data/lib/envjs/options.rb +11 -0
- data/lib/envjs/runtime.rb +346 -0
- data/lib/envjs/tempfile.rb +24 -0
- data/licenses/GPL-LICENSE.txt +278 -0
- data/licenses/MIT-LICENSE.txt +20 -0
- data/src/base64.js +80 -0
- data/src/build.js +6 -0
- data/src/cruft/bad.html +24 -0
- data/src/cruft/dom.js +606 -0
- data/src/cruft/element.js +297 -0
- data/src/cruft/good.html +30 -0
- data/src/cruft/good.js +32 -0
- data/src/cruft/internal.js +81 -0
- data/src/cruft/parser.js +458 -0
- data/src/css/properties.js +293 -0
- data/src/css/rule.js +22 -0
- data/src/css/sizzle.js +717 -0
- data/src/css/stylesheet.js +52 -0
- data/src/dom/attr.js +55 -0
- data/src/dom/cdatasection.js +31 -0
- data/src/dom/characterdata.js +119 -0
- data/src/dom/comment.js +30 -0
- data/src/dom/doctype.js +9 -0
- data/src/dom/document.js +1023 -0
- data/src/dom/dom.js +134 -0
- data/src/dom/element.js +217 -0
- data/src/dom/entities.js +273 -0
- data/src/dom/exception.js +28 -0
- data/src/dom/fragment.js +37 -0
- data/src/dom/implementation.js +140 -0
- data/src/dom/instruction.js +51 -0
- data/src/dom/namednodemap.js +374 -0
- data/src/dom/namespace.js +50 -0
- data/src/dom/node.js +618 -0
- data/src/dom/nodelist.js +195 -0
- data/src/dom/parser.js +1207 -0
- data/src/dom/text.js +73 -0
- data/src/event/event.js +47 -0
- data/src/event/mouseevent.js +4 -0
- data/src/event/uievent.js +8 -0
- data/src/html/a.js +110 -0
- data/src/html/anchor.js +80 -0
- data/src/html/area.js +57 -0
- data/src/html/base.js +26 -0
- data/src/html/blockquote-q.js +19 -0
- data/src/html/body.js +19 -0
- data/src/html/button.js +21 -0
- data/src/html/canvas.js +14 -0
- data/src/html/col-colgroup.js +49 -0
- data/src/html/collection.js +72 -0
- data/src/html/cookie.js +153 -0
- data/src/html/del-ins.js +25 -0
- data/src/html/div.js +28 -0
- data/src/html/document.js +364 -0
- data/src/html/element.js +382 -0
- data/src/html/fieldset.js +19 -0
- data/src/html/form.js +484 -0
- data/src/html/frame.js +89 -0
- data/src/html/frameset.js +25 -0
- data/src/html/head.js +44 -0
- data/src/html/html.js +0 -0
- data/src/html/htmlparser.js +340 -0
- data/src/html/iframe.js +26 -0
- data/src/html/image.js +0 -0
- data/src/html/img.js +62 -0
- data/src/html/input-elements.js +307 -0
- data/src/html/input.js +65 -0
- data/src/html/label.js +26 -0
- data/src/html/legend.js +19 -0
- data/src/html/link.js +82 -0
- data/src/html/map.js +22 -0
- data/src/html/meta.js +37 -0
- data/src/html/object.js +89 -0
- data/src/html/optgroup.js +25 -0
- data/src/html/option.js +103 -0
- data/src/html/param.js +38 -0
- data/src/html/script.js +122 -0
- data/src/html/select.js +132 -0
- data/src/html/style.js +31 -0
- data/src/html/table.js +199 -0
- data/src/html/tbody-thead-tfoot.js +92 -0
- data/src/html/td-th.js +18 -0
- data/src/html/textarea.js +31 -0
- data/src/html/title.js +20 -0
- data/src/html/tr.js +114 -0
- data/src/intro.js +141 -0
- data/src/outro.js +70 -0
- data/src/parser/html5.detailed.js +10762 -0
- data/src/parser/html5.min.js +503 -0
- data/src/parser/html5.pretty.js +10815 -0
- data/src/parser/intro.js +42 -0
- data/src/parser/outro.js +9 -0
- data/src/platform/core.js +323 -0
- data/src/platform/johnson.js +484 -0
- data/src/platform/rhino.js +327 -0
- data/src/platform/static/intro.js +41 -0
- data/src/platform/static/outro.js +30 -0
- data/src/profile/aop.js +238 -0
- data/src/profile/profile.js +402 -0
- data/src/serializer/xml.js +21 -0
- data/src/svg/animatedstring.js +25 -0
- data/src/svg/document.js +25 -0
- data/src/svg/element.js +22 -0
- data/src/svg/locatable.js +17 -0
- data/src/svg/rect.js +18 -0
- data/src/svg/rectelement.js +24 -0
- data/src/svg/stylable.js +49 -0
- data/src/svg/svgelement.js +22 -0
- data/src/svg/transformable.js +15 -0
- data/src/window/css.js +15 -0
- data/src/window/dialog.js +16 -0
- data/src/window/document.js +28 -0
- data/src/window/event.js +265 -0
- data/src/window/history.js +62 -0
- data/src/window/location.js +156 -0
- data/src/window/navigator.js +48 -0
- data/src/window/screen.js +53 -0
- data/src/window/timer.js +21 -0
- data/src/window/window.js +284 -0
- data/src/window/xhr.js +135 -0
- data/src/xpath/expression.js +49 -0
- data/src/xpath/implementation.js +2505 -0
- data/src/xpath/result.js +67 -0
- data/src/xpath/util.js +551 -0
- data/src/xpath/xmltoken.js +149 -0
- data/src/xslt/COPYING +34 -0
- data/src/xslt/ajaxslt-0.8.1/AUTHORS +1 -0
- data/src/xslt/ajaxslt-0.8.1/ChangeLog +136 -0
- data/src/xslt/ajaxslt-0.8.1/Makefile +49 -0
- data/src/xslt/ajaxslt-0.8.1/README +102 -0
- data/src/xslt/ajaxslt-0.8.1/TODO +15 -0
- data/src/xslt/ajaxslt-0.8.1/dom.js +566 -0
- data/src/xslt/ajaxslt-0.8.1/dom_unittest.html +24 -0
- data/src/xslt/ajaxslt-0.8.1/dom_unittest.js +131 -0
- data/src/xslt/ajaxslt-0.8.1/simplelog.js +79 -0
- data/src/xslt/ajaxslt-0.8.1/test/xpath.html +18 -0
- data/src/xslt/ajaxslt-0.8.1/test/xpath_script.js +45 -0
- data/src/xslt/ajaxslt-0.8.1/test/xslt.html +58 -0
- data/src/xslt/ajaxslt-0.8.1/test/xslt_script.js +33 -0
- data/src/xslt/ajaxslt-0.8.1/unittestsuite.html +26 -0
- data/src/xslt/ajaxslt-0.8.1/xmltoken.js +149 -0
- data/src/xslt/ajaxslt-0.8.1/xmltoken_unittest.html +18 -0
- data/src/xslt/ajaxslt-0.8.1/xmltoken_unittest.js +811 -0
- data/src/xslt/ajaxslt-0.8.1/xpath_unittest.html +39 -0
- data/src/xslt/ajaxslt-0.8.1/xpath_unittest.js +557 -0
- data/src/xslt/ajaxslt-0.8.1/xpathdebug.js +234 -0
- data/src/xslt/ajaxslt-0.8.1/xslt_unittest.html +138 -0
- data/src/xslt/ajaxslt-0.8.1/xslt_unittest.js +68 -0
- data/src/xslt/implementation.js +625 -0
- data/src/xslt/processor.js +37 -0
- data/src/xslt/util.js +449 -0
- data/test/base64.js +80 -0
- data/test/call-load-test.js +15 -0
- data/test/data.js +45 -0
- data/test/debug.js +53 -0
- data/test/firebug/errorIcon.png +0 -0
- data/test/firebug/firebug.css +209 -0
- data/test/firebug/firebug.html +23 -0
- data/test/firebug/firebug.js +672 -0
- data/test/firebug/firebugx.js +10 -0
- data/test/firebug/infoIcon.png +0 -0
- data/test/firebug/warningIcon.png +0 -0
- data/test/fixtures/html/events.html +171 -0
- data/test/fixtures/html/iframe1.html +46 -0
- data/test/fixtures/html/iframe1a.html +46 -0
- data/test/fixtures/html/iframe2.html +45 -0
- data/test/fixtures/html/iframe3.html +28 -0
- data/test/fixtures/html/iframeN.html +57 -0
- data/test/fixtures/html/malformed.html +181 -0
- data/test/fixtures/html/scope.html +81 -0
- data/test/fixtures/html/trivial.html +19 -0
- data/test/fixtures/html/with_js.html +26 -0
- data/test/fixtures/images/icon-blue.png +0 -0
- data/test/fixtures/js/external_script.js +1 -0
- data/test/fixtures/js/script.js +1 -0
- data/test/fixtures/js/script_error.js +2 -0
- data/test/foo.html +8 -0
- data/test/foo.js +40 -0
- data/test/html/events.html +171 -0
- data/test/html/iframe1.html +46 -0
- data/test/html/iframe1a.html +46 -0
- data/test/html/iframe2.html +45 -0
- data/test/html/iframe3.html +30 -0
- data/test/html/iframeN.html +57 -0
- data/test/html/malformed.html +181 -0
- data/test/html/scope.html +87 -0
- data/test/html/script.js +1 -0
- data/test/html/trivial.html +19 -0
- data/test/html/with_js.html +26 -0
- data/test/index.html +328 -0
- data/test/java-prototype.js +9 -0
- data/test/jquery.js +6002 -0
- data/test/primary-tests.js +26 -0
- data/test/prototype-test.js +13 -0
- data/test/qunit.js +61 -0
- data/test/qunit/qunit/qunit.css +17 -0
- data/test/qunit/qunit/qunit.js +997 -0
- data/test/scope.html +19 -0
- data/test/scope.rb +24 -0
- data/test/smp/dmathieu/index.html +8 -0
- data/test/specs/dist/env.spec.js +1534 -0
- data/test/specs/envjs.spec.css +46 -0
- data/test/specs/parser/html.js +31 -0
- data/test/specs/parser/spec.html +40 -0
- data/test/specs/parser/xml.js +31 -0
- data/test/specs/qunit.bdd.js +210 -0
- data/test/specs/qunit.css +17 -0
- data/test/specs/qunit.js +997 -0
- data/test/specs/template/spec-0.js +31 -0
- data/test/specs/template/spec-1.js +31 -0
- data/test/specs/template/spec.html +40 -0
- data/test/specs/window/css.js +23 -0
- data/test/specs/window/dialog.js +25 -0
- data/test/specs/window/document.js +23 -0
- data/test/specs/window/event.js +25 -0
- data/test/specs/window/history.js +34 -0
- data/test/specs/window/location.js +34 -0
- data/test/specs/window/navigator.js +71 -0
- data/test/specs/window/screen.js +42 -0
- data/test/specs/window/spec.html +48 -0
- data/test/specs/window/timer.js +26 -0
- data/test/specs/window/window.js +53 -0
- data/test/specs/xhr/spec.html +47 -0
- data/test/specs/xhr/xhr.js +31 -0
- data/test/test.js +10 -0
- data/test/unit/dom.js +44 -0
- data/test/unit/elementmembers.js +92 -0
- data/test/unit/events.js +195 -0
- data/test/unit/fixtures/external_script.js +1 -0
- data/test/unit/form.js +40 -0
- data/test/unit/iframe.js +234 -0
- data/test/unit/insertion.js +23 -0
- data/test/unit/multi-window.js +212 -0
- data/test/unit/nu.validator.js +34 -0
- data/test/unit/onload.js +90 -0
- data/test/unit/parser.js +122 -0
- data/test/unit/prototypecompat.js +22 -0
- data/test/unit/proxy.js +6 -0
- data/test/unit/scope.js +209 -0
- data/test/unit/timer.js +115 -0
- data/test/unit/window.js +57 -0
- data/test/x.js +1 -0
- data/test/y.js +1 -0
- metadata +367 -0
@@ -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,181 @@
|
|
1
|
+
<!DOCTYPE html >
|
2
|
+
<html 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
|
+
</head>
|
7
|
+
|
8
|
+
<body id="body">
|
9
|
+
<h1 id="header">jQuery Test Suite<h1>
|
10
|
+
|
11
|
+
|
12
|
+
<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>
|
13
|
+
<p id="ap">
|
14
|
+
Here are some links in a normal paragraph: <a id="google" href="http://www.google.com/" title="Google!">Google</a>,
|
15
|
+
<a id="groups" href="http://groups.google.com/">Google Groups</a>.
|
16
|
+
This link has <code><a href="http://smin" id="anchor1">class="blog"</a></code>:
|
17
|
+
<a href="http://diveintomark.org/" class="blog" hreflang="en" id="mark">diveintomark</a>
|
18
|
+
|
19
|
+
</p>
|
20
|
+
<div id="foo">
|
21
|
+
<p id="sndp">Everything inside the red border is inside a div with <code>id="foo"</code>.</p>
|
22
|
+
<p lang="en" id="en">This is a normal link: <a id="yahoo" href="http://www.yahoo.com/" class="blogTest">Yahoo</a></p>
|
23
|
+
<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>
|
24
|
+
|
25
|
+
</div>
|
26
|
+
<p id="first">Try them out:</p>
|
27
|
+
<ul id="firstUL"></ul>
|
28
|
+
<ol id="empty"></ol>
|
29
|
+
<form id="form" action="formaction">
|
30
|
+
<input type="text" name="action" value="Test" id="text1" maxlength="30"/>
|
31
|
+
<input type="text" name="text2" value="Test" id="text2" disabled="disabled"/>
|
32
|
+
<input type="radio" name="radio1" id="radio1" value="on"/>
|
33
|
+
|
34
|
+
<input type="radio" name="radio2" id="radio2" checked="checked"/>
|
35
|
+
<input type="checkbox" name="check" id="check1" checked="checked"/>
|
36
|
+
<input type="checkbox" id="check2" value="on"/>
|
37
|
+
|
38
|
+
<input type="hidden" name="hidden" id="hidden1"/>
|
39
|
+
<input type="text" style="display:none;" name="foo[bar]" id="hidden2"/>
|
40
|
+
|
41
|
+
<input type="text" id="name" name="name" value="name" />
|
42
|
+
|
43
|
+
<button id="button" name="button">Button</button>
|
44
|
+
|
45
|
+
<textarea id="area1" maxlength="30">foobar</textarea>
|
46
|
+
|
47
|
+
<select name="select1" id="select1">
|
48
|
+
<option id="option1a" class="emptyopt" value="">Nothing</option>
|
49
|
+
<option id="option1b" value="1">1
|
50
|
+
<option id="option1c" value="2">2</option>
|
51
|
+
<option id="option1d" value="3">3</option>
|
52
|
+
</select>
|
53
|
+
<select name="select2" id="select2">
|
54
|
+
<option id="option2a" class="emptyopt" value="">Nothing</option>
|
55
|
+
<option id="option2b" value="1">1</option>
|
56
|
+
<option id="option2c" value="2">2</option>
|
57
|
+
<option id="option2d" selected="selected" value="3">3</option>
|
58
|
+
</select>
|
59
|
+
<select name="select3" id="select3" multiple="multiple">
|
60
|
+
<option id="option3a" class="emptyopt" value="">Nothing</option>
|
61
|
+
<option id="option3b" selected="selected" value="1">1</option>
|
62
|
+
<option id="option3c" selected="selected" value="2">2</option>
|
63
|
+
<option id="option3d" value="3">3</option>
|
64
|
+
</select>
|
65
|
+
|
66
|
+
<object id="object1" codebase="stupid">
|
67
|
+
<param name="p1" value="x1" />
|
68
|
+
<param name="p2" value="x2" />
|
69
|
+
</object>
|
70
|
+
|
71
|
+
<span id="台北Táiběi"></span>
|
72
|
+
<span id="台北" lang="中文"></span>
|
73
|
+
<span id="utf8class1" class="台北Táiběi 台北"></span>
|
74
|
+
<span id="utf8class2" class="台北"></span>
|
75
|
+
<span id="foo:bar" class="foo:bar"></span>
|
76
|
+
<span id="test.foo[5]bar" class="test.foo[5]bar"></span>
|
77
|
+
|
78
|
+
<foo_bar id="foobar">test element</foo_bar>
|
79
|
+
</form>
|
80
|
+
<b id="floatTest">Float test.</b>
|
81
|
+
<form id="lengthtest">
|
82
|
+
<input type="text" id="length" name="test">
|
83
|
+
<input type="text" id="idTest" name="id">
|
84
|
+
</form>
|
85
|
+
<table id="table"></table>
|
86
|
+
|
87
|
+
<div id="fx-queue">
|
88
|
+
<div id="fadein" class='chain test'>fadeIn<div>fadeIn</div></div>
|
89
|
+
<div id="fadeout" class='chain test out'>fadeOut<div>fadeOut</div></div>
|
90
|
+
|
91
|
+
<div id="show" class='chain test'>show<div>show</div></div>
|
92
|
+
<div id="hide" class='chain test out'>hide<div>hide</div></div>
|
93
|
+
|
94
|
+
<div id="togglein" class='chain test'>togglein<div>togglein</div></div>
|
95
|
+
<div id="toggleout" class='chain test out'>toggleout<div>toggleout</div></div>
|
96
|
+
|
97
|
+
|
98
|
+
<div id="slideup" class='chain test'>slideUp<div>slideUp</div></div>
|
99
|
+
<div id="slidedown" class='chain test out'>slideDown<div>slideDown</div></div>
|
100
|
+
|
101
|
+
<div id="slidetogglein" class='chain test'>slideToggleIn<div>slideToggleIn</div></div>
|
102
|
+
<div id="slidetoggleout" class='chain test out'>slideToggleOut<div>slideToggleOut</div></div>
|
103
|
+
</div>
|
104
|
+
|
105
|
+
<div id="fx-tests"></div>
|
106
|
+
|
107
|
+
<form id="testForm" action="#" method="get">
|
108
|
+
<textarea name="T3" rows="2" cols="15">?
|
109
|
+
Z</textarea>
|
110
|
+
<input type="hidden" name="H1" value="x" />
|
111
|
+
<input type="hidden" name="H2" />
|
112
|
+
<input name="PWD" type="password" value="" />
|
113
|
+
<input name="T1" type="text" />
|
114
|
+
<input name="T2" type="text" value="YES" readonly="readonly" />
|
115
|
+
<input type="checkbox" name="C1" value="1" />
|
116
|
+
<input type="checkbox" name="C2" />
|
117
|
+
<input type="radio" name="R1" value="1" />
|
118
|
+
<input type="radio" name="R1" value="2" />
|
119
|
+
<input type="text" name="My Name" value="me" />
|
120
|
+
<input type="reset" name="reset" value="NO" />
|
121
|
+
<select name="S1">
|
122
|
+
<option value="abc">ABC</option>
|
123
|
+
<option value="abc">ABC</option>
|
124
|
+
<option value="abc">ABC</option>
|
125
|
+
</select>
|
126
|
+
<select name="S2" multiple="multiple" size="3">
|
127
|
+
<option value="abc">ABC</option>
|
128
|
+
<option value="abc">ABC</option>
|
129
|
+
<option value="abc">ABC</option>
|
130
|
+
</select>
|
131
|
+
<select name="S3">
|
132
|
+
<option selected="selected">YES</option>
|
133
|
+
</select>
|
134
|
+
<select name="S4">
|
135
|
+
<option value="" selected="selected">NO</option>
|
136
|
+
</select>
|
137
|
+
<input type="submit" name="sub1" value="NO" />
|
138
|
+
<input type="submit" name="sub2" value="NO" />
|
139
|
+
<input type="image" name="sub3" value="NO" />
|
140
|
+
<button name="sub4" type="submit" value="NO">NO</button>
|
141
|
+
<input name="D1" type="text" value="NO" disabled="disabled" />
|
142
|
+
<input type="checkbox" checked="checked" disabled="disabled" name="D2" value="NO" />
|
143
|
+
<input type="radio" name="D3" value="NO" checked="checked" disabled="disabled" />
|
144
|
+
<select name="D4" disabled="disabled">
|
145
|
+
<option selected="selected" value="NO">NO</option>
|
146
|
+
</select>
|
147
|
+
</form>
|
148
|
+
<div id="moretests">
|
149
|
+
<form>
|
150
|
+
<div id="checkedtest" style="display:none;">
|
151
|
+
<input type="radio" name="checkedtestradios" checked="checked"/>
|
152
|
+
<input type="radio" name="checkedtestradios" value="on"/>
|
153
|
+
<input type="checkbox" name="checkedtestcheckboxes" checked="checked"/>
|
154
|
+
<input type="checkbox" name="checkedtestcheckboxes" />
|
155
|
+
</div>
|
156
|
+
</form>
|
157
|
+
<div id="nonnodes"><span>hi</span> there <!-- mon ami --></div>
|
158
|
+
<div id="t2037">
|
159
|
+
<div><div class="hidden">hidden</div></div>
|
160
|
+
</div>
|
161
|
+
</div>
|
162
|
+
</div>
|
163
|
+
</dl>
|
164
|
+
|
165
|
+
<ol id="tests"></ol>
|
166
|
+
|
167
|
+
<!-- test execution of main pages's body-onload tag functionality -->
|
168
|
+
<script>
|
169
|
+
var bodyElem = document.getElementsByTagName('body')[0];
|
170
|
+
bodyElem.onload = function(){
|
171
|
+
var t = document.createTextNode(
|
172
|
+
'Look, a dynamically-generated paragraph!');
|
173
|
+
var p = document.createElement('p');
|
174
|
+
p.setAttribute('id', 'pCreatedByBodyOnload');
|
175
|
+
p.appendChild(t);
|
176
|
+
bodyElem.appendChild(p);
|
177
|
+
}
|
178
|
+
</script>
|
179
|
+
<script>document.write("<a>efg");</script><p>abc
|
180
|
+
</body>
|
181
|
+
</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>
|
data/test/html/script.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
//
|
@@ -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, "World"!</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>
|