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,81 @@
|
|
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="div2" align="center"
|
57
|
+
onclick="aVar='Overridden!'; checkLexicalScoping(this);">
|
58
|
+
<form id="form1" action="post-url" method="post">
|
59
|
+
<input id="text1" type="text" size="42"
|
60
|
+
onchange="makeAPara('p3', value, type, size, action, align);"
|
61
|
+
/>
|
62
|
+
</form>
|
63
|
+
</div>
|
64
|
+
|
65
|
+
<div id="div3">
|
66
|
+
<p id="p4">
|
67
|
+
More text. This time, expect event handler to append another
|
68
|
+
sentence to this paragraph.
|
69
|
+
</p>
|
70
|
+
</div>
|
71
|
+
<script>
|
72
|
+
target = "p4"; // already defined in global, so modify not redefine
|
73
|
+
document.getElementById('div3').onclick = function(){
|
74
|
+
var targetElement = document.getElementById(target);
|
75
|
+
var t = document.createTextNode("Third sentence contains the number " +
|
76
|
+
bVar + ".");
|
77
|
+
targetElement.appendChild(t);
|
78
|
+
}
|
79
|
+
</script>
|
80
|
+
</body>
|
81
|
+
</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, "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>
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
var $$$$$ = "12345";
|
@@ -0,0 +1 @@
|
|
1
|
+
//
|
data/test/foo.html
ADDED
data/test/foo.js
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
debug = this.debug || ( console.log && function(f){console.log(f)} ) || console.debug;
|
2
|
+
$(function(){
|
3
|
+
$("<div id='xx'></div>").appendTo(document.body);
|
4
|
+
$("#xx").get(0).innerHTML =
|
5
|
+
"<script id='foo0'>debug('shouldnt');</sc"+"ript>";
|
6
|
+
v = $("<div></div>").get(0);
|
7
|
+
v.innerHTML = "<script id='foo1'>debug('should');</sc"+"ript>";
|
8
|
+
$(document.body).append(v);
|
9
|
+
|
10
|
+
n = $("<div>0</div><script id='foo3'>debug('*');</sc"+"ript>");
|
11
|
+
m = $("<div>0</div><script src='y.js'></sc"+"ript>"); // debug("**2");
|
12
|
+
debug("before add");
|
13
|
+
n.appendTo(document.body);
|
14
|
+
m.appendTo(document.body);
|
15
|
+
// debug(n.get(0).ownerDocument.documentElement.innerHTML);
|
16
|
+
debug("after add");
|
17
|
+
$("<div>1</div><script id='bar'></sc"+"ript>").appendTo(document.body);
|
18
|
+
$("<div>2</div><script id='foobar'></sc"+"ript>").appendTo(document.body);
|
19
|
+
$("#bar").attr("src","x.js"); // = debug("**");
|
20
|
+
$("#foobar").append(document.createTextNode('debug("***");'));
|
21
|
+
setTimeout(function(){
|
22
|
+
debug("replace text");
|
23
|
+
$("#foobar").text('debug("****");');
|
24
|
+
debug("replace attribute");
|
25
|
+
$("#bar").attr("src","x.js");
|
26
|
+
setTimeout(function(){
|
27
|
+
debug("remove attribute");
|
28
|
+
$("#bar").attr("src","");
|
29
|
+
setTimeout(function(){
|
30
|
+
debug("readd attribute");
|
31
|
+
$("#bar").attr("src","x.js");
|
32
|
+
},100);
|
33
|
+
},100);
|
34
|
+
},100);
|
35
|
+
$("<div id='nope'>huh?</div>").appendTo(document.body);
|
36
|
+
$("#nope").get(0).innerHTML = "<script>debug('oops!');</scr"+"ipt>";
|
37
|
+
$("#nope script").text("debug('me neither');");
|
38
|
+
$("#nope script").attr("src","x.js"); // or me
|
39
|
+
debug('loaded');
|
40
|
+
});
|
@@ -0,0 +1,171 @@
|
|
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>IFRAME content page, env.js unit tests, deeply-nested structure
|
15
|
+
</title>
|
16
|
+
|
17
|
+
<script>
|
18
|
+
// define event handlers for following HTML structure
|
19
|
+
|
20
|
+
window.initECounters = function (counterObj){
|
21
|
+
counterObj["window onload"] = 0;
|
22
|
+
counterObj["window onunload"] = 0;
|
23
|
+
counterObj["body onload"] = 0;
|
24
|
+
counterObj["body onclick"] = 0;
|
25
|
+
counterObj["body onunload"] = 0;
|
26
|
+
counterObj["h1 onclick"] = 0;
|
27
|
+
counterObj["h2 onclick"] = 0;
|
28
|
+
counterObj["div onclick"] = 0;
|
29
|
+
counterObj["table onclick"] = 0;
|
30
|
+
counterObj["tbody onclick"] = 0;
|
31
|
+
counterObj["tr onclick"] = 0;
|
32
|
+
counterObj["td onclick"] = 0;
|
33
|
+
counterObj["ul onclick"] = 0;
|
34
|
+
counterObj["li onclick"] = 0;
|
35
|
+
counterObj["p onclick"] = 0;
|
36
|
+
counterObj["b onclick"] = 0;
|
37
|
+
counterObj["i onclick"] = 0;
|
38
|
+
counterObj["a onclick"] = 0;
|
39
|
+
counterObj["img onclick"] = 0;
|
40
|
+
counterObj["img onload"] = 0;
|
41
|
+
}
|
42
|
+
|
43
|
+
// init only first time this page loads, re-init'ed in unit/events.js
|
44
|
+
try {
|
45
|
+
if (!(window.top.eCounters)){
|
46
|
+
window.top.eCounters = {};
|
47
|
+
initECounters(window.top.eCounters);
|
48
|
+
}
|
49
|
+
} catch(e){
|
50
|
+
window.top.eCounters = {};
|
51
|
+
initECounters(window.top.eCounters);
|
52
|
+
}
|
53
|
+
|
54
|
+
function bodyOnloadHandler(elem){
|
55
|
+
if (elem === document.getElementById('theBODY'))
|
56
|
+
window.top.eCounters["body onload"] += 1;
|
57
|
+
}
|
58
|
+
function bodyOnclickHandler(elem){
|
59
|
+
if (elem === document.getElementById('theBODY'))
|
60
|
+
window.top.eCounters["body onclick"] += 1;
|
61
|
+
}
|
62
|
+
function bodyOnunloadHandler(elem){
|
63
|
+
if (elem === document.getElementById('theBODY'))
|
64
|
+
window.top.eCounters["body onunload"] += 1;
|
65
|
+
}
|
66
|
+
function h1OnclickHandler(elem){
|
67
|
+
if (elem === document.getElementById('theH1'))
|
68
|
+
window.top.eCounters["h1 onclick"] += 1;
|
69
|
+
}
|
70
|
+
function h2OnclickHandler(elem){
|
71
|
+
if (elem === document.getElementById('theH2'))
|
72
|
+
window.top.eCounters["h2 onclick"] += 1;
|
73
|
+
}
|
74
|
+
function divOnclickHandler(elem){
|
75
|
+
if (elem === document.getElementById('theDIV'))
|
76
|
+
window.top.eCounters["div onclick"] += 1;
|
77
|
+
}
|
78
|
+
function tableOnclickHandler(elem){
|
79
|
+
if (elem === document.getElementById('theTABLE'))
|
80
|
+
window.top.eCounters["table onclick"] += 1;
|
81
|
+
}
|
82
|
+
function tbodyOnclickHandler(elem){
|
83
|
+
if (elem === document.getElementById('theTBODY'))
|
84
|
+
window.top.eCounters["tbody onclick"] += 1;
|
85
|
+
}
|
86
|
+
function trOnclickHandler(elem){
|
87
|
+
if (elem === document.getElementById('theTR'))
|
88
|
+
window.top.eCounters["tr onclick"] += 1;
|
89
|
+
}
|
90
|
+
function tdOnclickHandler(elem){
|
91
|
+
if (elem === document.getElementById('theTD'))
|
92
|
+
window.top.eCounters["td onclick"] += 1;
|
93
|
+
}
|
94
|
+
function ulOnclickHandler(elem){
|
95
|
+
if (elem === document.getElementById('theUL'))
|
96
|
+
window.top.eCounters["ul onclick"] += 1;
|
97
|
+
}
|
98
|
+
function liOnclickHandler(elem){
|
99
|
+
if (elem === document.getElementById('theLI'))
|
100
|
+
window.top.eCounters["li onclick"] += 1;
|
101
|
+
}
|
102
|
+
function pOnclickHandler(elem){
|
103
|
+
if (elem === document.getElementById('theP'))
|
104
|
+
window.top.eCounters["p onclick"] += 1;
|
105
|
+
}
|
106
|
+
function bOnclickHandler(elem){
|
107
|
+
if (elem === document.getElementById('theB'))
|
108
|
+
window.top.eCounters["b onclick"] += 1;
|
109
|
+
}
|
110
|
+
function iOnclickHandler(elem){
|
111
|
+
if (elem === document.getElementById('theI'))
|
112
|
+
window.top.eCounters["i onclick"] += 1;
|
113
|
+
}
|
114
|
+
function aOnclickHandler(elem){
|
115
|
+
if (elem === document.getElementById('theA'))
|
116
|
+
window.top.eCounters["a onclick"] += 1;
|
117
|
+
}
|
118
|
+
function imgOnclickHandler(elem){
|
119
|
+
if (elem === document.getElementById('theIMG'))
|
120
|
+
window.top.eCounters["img onclick"] += 1;
|
121
|
+
}
|
122
|
+
function imgOnloadHandler(elem){
|
123
|
+
if (elem === document.getElementById('theIMG'))
|
124
|
+
window.top.eCounters["img onload"] += 1;
|
125
|
+
}
|
126
|
+
|
127
|
+
window.onload = function(){
|
128
|
+
window.top.eCounters["window onload"] += 1;
|
129
|
+
}
|
130
|
+
|
131
|
+
window.onunload = function(){
|
132
|
+
window.top.eCounters["window onunload"] += 1;
|
133
|
+
}
|
134
|
+
</script>
|
135
|
+
|
136
|
+
</head>
|
137
|
+
<body id="theBODY" onload="bodyOnloadHandler(this);"
|
138
|
+
onclick="bodyOnclickHandler(this);"
|
139
|
+
onunload="bodyOnunloadHandler(this);">
|
140
|
+
<h1 id="theH1" onclick="h1OnclickHandler(this);">
|
141
|
+
First header in document</h1>
|
142
|
+
<h2 id="theH2" onclick="h2OnclickHandler(this);">
|
143
|
+
Second header in document</h2>
|
144
|
+
|
145
|
+
<div id="theDIV" onclick="divOnclickHandler(this);">
|
146
|
+
<table id="theTABLE" onclick="tableOnclickHandler(this);">
|
147
|
+
<tbody id="theTBODY" onclick="tbodyOnclickHandler(this);">
|
148
|
+
<tr id="theTR" onclick="trOnclickHandler(this);">
|
149
|
+
<td id="theTD" onclick="tdOnclickHandler(this);">
|
150
|
+
<ul id="theUL" onclick="ulOnclickHandler(this);">
|
151
|
+
<li id="theLI" onclick="liOnclickHandler(this);">
|
152
|
+
<p id="theP" onclick="pOnclickHandler(this);">
|
153
|
+
Some text <b id="theB" onclick="bOnclickHandler(this);">
|
154
|
+
more text <i id="theI" onclick="iOnclickHandler(this);">
|
155
|
+
<a id="theA" href="#" onclick="aOnclickHandler(this);">
|
156
|
+
<img id="theIMG" src="noImg.png" alt="image link"
|
157
|
+
onclick="imgOnclickHandler(this);"
|
158
|
+
onload="imgOnloadHandler(this);" />
|
159
|
+
</a> fu fu
|
160
|
+
</i> bar bar,
|
161
|
+
</b> blah blah.
|
162
|
+
</p>
|
163
|
+
</li>
|
164
|
+
</ul>
|
165
|
+
</td>
|
166
|
+
</tr>
|
167
|
+
</tbody>
|
168
|
+
</table>
|
169
|
+
</div>
|
170
|
+
</body>
|
171
|
+
</html>
|
@@ -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 for IFRAME element in env.js unit test suite</title>
|
15
|
+
</head>
|
16
|
+
<body onload="try{checkEventsWithinIframe();}catch(e){;}">
|
17
|
+
<p id="anElementWithText">
|
18
|
+
This is the text content of a paragraph element.
|
19
|
+
</p>
|
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,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>
|