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
data/src/html/iframe.js
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
$debug("Defining HTMLIFrameElement");
|
2
|
+
/*
|
3
|
+
* HTMLIFrameElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLIFrameElement = function(ownerDocument) {
|
6
|
+
this.HTMLFrameElement = HTMLFrameElement;
|
7
|
+
this.HTMLFrameElement(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLIFrameElement.prototype = new HTMLFrameElement;
|
10
|
+
__extend__(HTMLIFrameElement.prototype, {
|
11
|
+
get height() {
|
12
|
+
return this.getAttribute("height") || "";
|
13
|
+
},
|
14
|
+
set height(val) {
|
15
|
+
return this.setAttribute("height",val);
|
16
|
+
},
|
17
|
+
get width() {
|
18
|
+
return this.getAttribute("width") || "";
|
19
|
+
},
|
20
|
+
set width(val) {
|
21
|
+
return this.setAttribute("width",val);
|
22
|
+
}
|
23
|
+
});
|
24
|
+
|
25
|
+
// $w.HTMLIFrameElement = HTMLIFrameElement;
|
26
|
+
|
data/src/html/image.js
ADDED
File without changes
|
data/src/html/img.js
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
$debug("Defining HTMLImageElement");
|
2
|
+
/*
|
3
|
+
* HTMLImageElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLImageElement = function(ownerDocument) {
|
6
|
+
this.HTMLElement = HTMLElement;
|
7
|
+
this.HTMLElement(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLImageElement.prototype = new HTMLElement;
|
10
|
+
__extend__(HTMLImageElement.prototype, {
|
11
|
+
get alt(){
|
12
|
+
return this.getAttribute('alt');
|
13
|
+
},
|
14
|
+
set alt(value){
|
15
|
+
this.setAttribute('alt', value);
|
16
|
+
},
|
17
|
+
get height(){
|
18
|
+
return this.getAttribute('height');
|
19
|
+
},
|
20
|
+
set height(value){
|
21
|
+
this.setAttribute('height', value);
|
22
|
+
},
|
23
|
+
get isMap(){
|
24
|
+
return this.hasAttribute('map');
|
25
|
+
},
|
26
|
+
set useMap(value){
|
27
|
+
this.setAttribute('map', value);
|
28
|
+
},
|
29
|
+
get longDesc(){
|
30
|
+
return this.getAttribute('longdesc');
|
31
|
+
},
|
32
|
+
set longDesc(value){
|
33
|
+
this.setAttribute('longdesc', value);
|
34
|
+
},
|
35
|
+
get name(){
|
36
|
+
return this.getAttribute('name');
|
37
|
+
},
|
38
|
+
set name(value){
|
39
|
+
this.setAttribute('name', value);
|
40
|
+
},
|
41
|
+
get src(){
|
42
|
+
return this.getAttribute('src');
|
43
|
+
},
|
44
|
+
set src(value){
|
45
|
+
this.setAttribute('src', value);
|
46
|
+
|
47
|
+
var event = this.ownerDocument.createEvent();
|
48
|
+
event.initEvent("load");
|
49
|
+
this.dispatchEvent( event, false );
|
50
|
+
},
|
51
|
+
get width(){
|
52
|
+
return this.getAttribute('width');
|
53
|
+
},
|
54
|
+
set width(value){
|
55
|
+
this.setAttribute('width', value);
|
56
|
+
},
|
57
|
+
onload: function(event){
|
58
|
+
return __eval__(this.getAttribute('onload')||'', this)
|
59
|
+
}
|
60
|
+
});
|
61
|
+
|
62
|
+
// $w.HTMLImageElement = HTMLImageElement;d
|
@@ -0,0 +1,307 @@
|
|
1
|
+
/*
|
2
|
+
* a set of convenience classes to centralize implementation of
|
3
|
+
* properties and methods across multiple in-form elements
|
4
|
+
*
|
5
|
+
* the hierarchy of related HTML elements and their members is as follows:
|
6
|
+
*
|
7
|
+
*
|
8
|
+
* HTMLInputCommon: common to all elements
|
9
|
+
* .form
|
10
|
+
*
|
11
|
+
* <legend>
|
12
|
+
* [common plus:]
|
13
|
+
* .align
|
14
|
+
*
|
15
|
+
* <fieldset>
|
16
|
+
* [identical to "legend" plus:]
|
17
|
+
* .margin
|
18
|
+
*
|
19
|
+
*
|
20
|
+
* ****
|
21
|
+
*
|
22
|
+
* <label>
|
23
|
+
* [common plus:]
|
24
|
+
* .dataFormatAs
|
25
|
+
* .htmlFor
|
26
|
+
* [plus data properties]
|
27
|
+
*
|
28
|
+
* <option>
|
29
|
+
* [common plus:]
|
30
|
+
* .defaultSelected
|
31
|
+
* .index
|
32
|
+
* .label
|
33
|
+
* .selected
|
34
|
+
* .text
|
35
|
+
* .value // unique implementation, not duplicated
|
36
|
+
*
|
37
|
+
* ****
|
38
|
+
*
|
39
|
+
* HTMLTypeValueInputs: common to remaining elements
|
40
|
+
* [common plus:]
|
41
|
+
* .name
|
42
|
+
* .type
|
43
|
+
* .value
|
44
|
+
* [plus data properties]
|
45
|
+
*
|
46
|
+
*
|
47
|
+
* <select>
|
48
|
+
* .length
|
49
|
+
* .multiple
|
50
|
+
* .options[]
|
51
|
+
* .selectedIndex
|
52
|
+
* .add()
|
53
|
+
* .remove()
|
54
|
+
* .item() // unimplemented
|
55
|
+
* .namedItem() // unimplemented
|
56
|
+
* [plus ".onchange"]
|
57
|
+
* [plus focus events]
|
58
|
+
* [plus data properties]
|
59
|
+
* [plus ".size"]
|
60
|
+
*
|
61
|
+
* <button>
|
62
|
+
* .dataFormatAs // duplicated from above, oh well....
|
63
|
+
* [plus ".status", ".createTextRange()"]
|
64
|
+
*
|
65
|
+
* ****
|
66
|
+
*
|
67
|
+
* HTMLInputAreaCommon: common to remaining elements
|
68
|
+
* .defaultValue
|
69
|
+
* .readOnly
|
70
|
+
* .handleEvent() // unimplemented
|
71
|
+
* .select()
|
72
|
+
* .onselect
|
73
|
+
* [plus ".size"]
|
74
|
+
* [plus ".status", ".createTextRange()"]
|
75
|
+
* [plus focus events]
|
76
|
+
* [plus ".onchange"]
|
77
|
+
*
|
78
|
+
* <textarea>
|
79
|
+
* .cols
|
80
|
+
* .rows
|
81
|
+
* .wrap // unimplemented
|
82
|
+
* .onscroll // unimplemented
|
83
|
+
*
|
84
|
+
* <input>
|
85
|
+
* .alt
|
86
|
+
* .accept // unimplemented
|
87
|
+
* .checked
|
88
|
+
* .complete // unimplemented
|
89
|
+
* .defaultChecked
|
90
|
+
* .dynsrc // unimplemented
|
91
|
+
* .height
|
92
|
+
* .hspace // unimplemented
|
93
|
+
* .indeterminate // unimplemented
|
94
|
+
* .loop // unimplemented
|
95
|
+
* .lowsrc // unimplemented
|
96
|
+
* .maxLength
|
97
|
+
* .src
|
98
|
+
* .start // unimplemented
|
99
|
+
* .useMap
|
100
|
+
* .vspace // unimplemented
|
101
|
+
* .width
|
102
|
+
* .onclick
|
103
|
+
* [plus ".size"]
|
104
|
+
* [plus ".status", ".createTextRange()"]
|
105
|
+
|
106
|
+
* [data properties] // unimplemented
|
107
|
+
* .dataFld
|
108
|
+
* .dataSrc
|
109
|
+
|
110
|
+
* [status stuff] // unimplemented
|
111
|
+
* .status
|
112
|
+
* .createTextRange()
|
113
|
+
|
114
|
+
* [focus events]
|
115
|
+
* .onblur
|
116
|
+
* .onfocus
|
117
|
+
|
118
|
+
*/
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
$debug("Defining input element 'mix in' objects");
|
124
|
+
var inputElements_dataProperties = {};
|
125
|
+
var inputElements_status = {};
|
126
|
+
|
127
|
+
var inputElements_onchange = {
|
128
|
+
onchange: function(event){
|
129
|
+
return __eval__(this.getAttribute('onchange')||'', this);
|
130
|
+
}
|
131
|
+
};
|
132
|
+
|
133
|
+
var inputElements_size = {
|
134
|
+
get size(){
|
135
|
+
return Number(this.getAttribute('size'));
|
136
|
+
},
|
137
|
+
set size(value){
|
138
|
+
this.setAttribute('size',value);
|
139
|
+
}
|
140
|
+
};
|
141
|
+
|
142
|
+
var inputElements_focusEvents = {
|
143
|
+
blur: function(){
|
144
|
+
__blur__(this);
|
145
|
+
|
146
|
+
if (this._oldValue != this.value){
|
147
|
+
var event = this.ownerDocument.createEvent();
|
148
|
+
event.initEvent("change");
|
149
|
+
this.dispatchEvent( event );
|
150
|
+
}
|
151
|
+
},
|
152
|
+
focus: function(){
|
153
|
+
__focus__(this);
|
154
|
+
this._oldValue = this.value;
|
155
|
+
}
|
156
|
+
};
|
157
|
+
|
158
|
+
|
159
|
+
$debug("Defining HTMLInputCommon");
|
160
|
+
|
161
|
+
/*
|
162
|
+
* HTMLInputCommon - convenience class, not DOM
|
163
|
+
*/
|
164
|
+
var HTMLInputCommon = function(ownerDocument) {
|
165
|
+
this.HTMLElement = HTMLElement;
|
166
|
+
this.HTMLElement(ownerDocument);
|
167
|
+
};
|
168
|
+
HTMLInputCommon.prototype = new HTMLElement;
|
169
|
+
__extend__(HTMLInputCommon.prototype, {
|
170
|
+
get form(){
|
171
|
+
var parent = this.parentNode;
|
172
|
+
while(parent && parent.nodeName.toLowerCase() != 'form'){
|
173
|
+
parent = parent.parentNode;
|
174
|
+
}
|
175
|
+
return parent;
|
176
|
+
},
|
177
|
+
get accessKey(){
|
178
|
+
return this.getAttribute('accesskey');
|
179
|
+
},
|
180
|
+
set accessKey(value){
|
181
|
+
this.setAttribute('accesskey',value);
|
182
|
+
},
|
183
|
+
get access(){
|
184
|
+
return this.getAttribute('access');
|
185
|
+
},
|
186
|
+
set access(value){
|
187
|
+
this.setAttribute('access', value);
|
188
|
+
},
|
189
|
+
get disabled(){
|
190
|
+
return (this.getAttribute('disabled')=='disabled');
|
191
|
+
},
|
192
|
+
set disabled(value){
|
193
|
+
this.setAttribute('disabled', (value ? 'disabled' :''));
|
194
|
+
}
|
195
|
+
});
|
196
|
+
|
197
|
+
// $w.HTMLInputCommon = HTMLInputCommon;
|
198
|
+
|
199
|
+
|
200
|
+
$debug("Defining HTMLTypeValueInputs");
|
201
|
+
|
202
|
+
/*
|
203
|
+
* HTMLTypeValueInputs - convenience class, not DOM
|
204
|
+
*/
|
205
|
+
var HTMLTypeValueInputs = function(ownerDocument) {
|
206
|
+
this.HTMLInputCommon = HTMLInputCommon;
|
207
|
+
this.HTMLInputCommon(ownerDocument);
|
208
|
+
|
209
|
+
this._oldValue = "";
|
210
|
+
};
|
211
|
+
HTMLTypeValueInputs.prototype = new HTMLInputCommon;
|
212
|
+
__extend__(HTMLTypeValueInputs.prototype, inputElements_size);
|
213
|
+
__extend__(HTMLTypeValueInputs.prototype, inputElements_status);
|
214
|
+
__extend__(HTMLTypeValueInputs.prototype, inputElements_dataProperties);
|
215
|
+
__extend__(HTMLTypeValueInputs.prototype, {
|
216
|
+
get defaultValue(){
|
217
|
+
return this.getAttribute('defaultValue');
|
218
|
+
},
|
219
|
+
set defaultValue(value){
|
220
|
+
this.setAttribute('defaultValue', value);
|
221
|
+
},
|
222
|
+
get name(){
|
223
|
+
return this.getAttribute('name')||'';
|
224
|
+
},
|
225
|
+
set name(value){
|
226
|
+
this.setAttribute('name',value);
|
227
|
+
},
|
228
|
+
get type(){
|
229
|
+
return this.getAttribute('type');
|
230
|
+
},
|
231
|
+
set type(type){
|
232
|
+
return this.setAttribute('type', type);
|
233
|
+
},
|
234
|
+
get value(){
|
235
|
+
return this.getAttribute('value')||'';
|
236
|
+
},
|
237
|
+
set value(newValue){
|
238
|
+
this.setAttribute('value',newValue);
|
239
|
+
},
|
240
|
+
setAttribute: function(name, value){
|
241
|
+
if (this.type == "radio" && name == "checked" && value && this.name) {
|
242
|
+
// HTMLElement.prototype.setAttribute.apply(this, ["checked", "checked"]);
|
243
|
+
// return;
|
244
|
+
var parent = this.parentNode;
|
245
|
+
while(parent != this.ownderDocument) {
|
246
|
+
if(parent.tagName == "FORM") {
|
247
|
+
break;
|
248
|
+
}
|
249
|
+
parent = parent.parentNode;
|
250
|
+
}
|
251
|
+
if(parent && parent.tagName == "FORM") {
|
252
|
+
var xpath = './/input[@type="radio" and @name="'+this.name+'"]';
|
253
|
+
var nodes =
|
254
|
+
this.ownerDocument.evaluate(xpath,parent, null, XPathResult.ANY_TYPE,null );
|
255
|
+
while(( node = nodes.iterateNext() )) {
|
256
|
+
// FIX? events when we short circuit like this?
|
257
|
+
if (node === this) {
|
258
|
+
HTMLElement.prototype.setAttribute.call(node, "checked", "checked");
|
259
|
+
} else {
|
260
|
+
HTMLElement.prototype.removeAttribute.call(node, "checked");
|
261
|
+
}
|
262
|
+
}
|
263
|
+
}
|
264
|
+
}
|
265
|
+
if(name == 'value' && !this.defaultValue){
|
266
|
+
this.defaultValue = value;
|
267
|
+
}
|
268
|
+
HTMLElement.prototype.setAttribute.apply(this, [name, value]);
|
269
|
+
}
|
270
|
+
});
|
271
|
+
|
272
|
+
// $w.HTMLTypeValueInputs = HTMLTypeValueInputs;
|
273
|
+
|
274
|
+
|
275
|
+
|
276
|
+
$debug("Defining HTMLInputAreaCommon");
|
277
|
+
|
278
|
+
/*
|
279
|
+
* HTMLInputAreaCommon - convenience class, not DOM
|
280
|
+
*/
|
281
|
+
var HTMLInputAreaCommon = function(ownerDocument) {
|
282
|
+
this.HTMLTypeValueInputs = HTMLTypeValueInputs;
|
283
|
+
this.HTMLTypeValueInputs(ownerDocument);
|
284
|
+
};
|
285
|
+
HTMLInputAreaCommon.prototype = new HTMLTypeValueInputs;
|
286
|
+
__extend__(HTMLInputAreaCommon.prototype, inputElements_focusEvents);
|
287
|
+
__extend__(HTMLInputAreaCommon.prototype, inputElements_onchange);
|
288
|
+
__extend__(HTMLInputAreaCommon.prototype, {
|
289
|
+
get readOnly(){
|
290
|
+
return (this.getAttribute('readonly')=='readonly');
|
291
|
+
},
|
292
|
+
set readOnly(value){
|
293
|
+
this.setAttribute('readonly', (value ? 'readonly' :''));
|
294
|
+
},
|
295
|
+
select:function(){
|
296
|
+
__select__(this);
|
297
|
+
|
298
|
+
}
|
299
|
+
});
|
300
|
+
|
301
|
+
// $w.HTMLInputAreaCommon = HTMLInputAreaCommon;
|
302
|
+
|
303
|
+
// Local Variables:
|
304
|
+
// espresso-indent-level:4
|
305
|
+
// c-basic-offset:4
|
306
|
+
// tab-width:4
|
307
|
+
// End:
|
data/src/html/input.js
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
$debug("Defining HTMLInputElement");
|
2
|
+
/*
|
3
|
+
* HTMLInputElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLInputElement = function(ownerDocument) {
|
6
|
+
this.HTMLInputAreaCommon = HTMLInputAreaCommon;
|
7
|
+
this.HTMLInputAreaCommon(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLInputElement.prototype = new HTMLInputAreaCommon;
|
10
|
+
__extend__(HTMLInputElement.prototype, {
|
11
|
+
get alt(){
|
12
|
+
return this.getAttribute('alt');
|
13
|
+
},
|
14
|
+
set alt(value){
|
15
|
+
this.setAttribute('alt', value);
|
16
|
+
},
|
17
|
+
get checked(){
|
18
|
+
return (this.getAttribute('checked')=='checked');
|
19
|
+
},
|
20
|
+
set checked(value){
|
21
|
+
this.setAttribute('checked', (value ? 'checked' :''));
|
22
|
+
},
|
23
|
+
get defaultChecked(){
|
24
|
+
return this.getAttribute('defaultChecked');
|
25
|
+
},
|
26
|
+
get height(){
|
27
|
+
return this.getAttribute('height');
|
28
|
+
},
|
29
|
+
set height(value){
|
30
|
+
this.setAttribute('height',value);
|
31
|
+
},
|
32
|
+
get maxLength(){
|
33
|
+
return Number(this.getAttribute('maxlength')||'0');
|
34
|
+
},
|
35
|
+
set maxLength(value){
|
36
|
+
this.setAttribute('maxlength', value);
|
37
|
+
},
|
38
|
+
get src(){
|
39
|
+
return this.getAttribute('src');
|
40
|
+
},
|
41
|
+
set src(value){
|
42
|
+
this.setAttribute('src', value);
|
43
|
+
},
|
44
|
+
get useMap(){
|
45
|
+
return this.getAttribute('map');
|
46
|
+
},
|
47
|
+
get width(){
|
48
|
+
return this.getAttribute('width');
|
49
|
+
},
|
50
|
+
set width(value){
|
51
|
+
this.setAttribute('width',value);
|
52
|
+
},
|
53
|
+
click:function(){
|
54
|
+
__click__(this);
|
55
|
+
}
|
56
|
+
});
|
57
|
+
|
58
|
+
// $w.HTMLInputElement = HTMLInputElement;
|
59
|
+
|
60
|
+
// Local Variables:
|
61
|
+
// espresso-indent-level:4
|
62
|
+
// c-basic-offset:4
|
63
|
+
// tab-width:4
|
64
|
+
// mode:auto-revert
|
65
|
+
// End:
|