envjs 0.1.7 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.jslintrbrc +29 -0
- data/.project +17 -0
- data/CHANGELOG.rdoc +3 -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 +287 -0
- data/{README → README.rdoc} +24 -3
- data/Rakefile +196 -0
- data/Wakefile +24 -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 +2 -0
- data/lib/envjs/env.js +22 -3
- data/lib/envjs/event_loop.js +2 -0
- data/lib/envjs/static.js +155 -21
- 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 +553 -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 +602 -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 +39 -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 +151 -0
- data/src/html/del-ins.js +25 -0
- data/src/html/div.js +28 -0
- data/src/html/document.js +359 -0
- data/src/html/element.js +380 -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 +97 -0
- data/src/html/param.js +38 -0
- data/src/html/script.js +122 -0
- data/src/html/select.js +129 -0
- data/src/html/style.js +31 -0
- data/src/html/table.js +199 -0
- data/src/html/tbody-thead-tfoot.js +91 -0
- data/src/html/td-th.js +18 -0
- data/src/html/textarea.js +25 -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 +479 -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 +262 -0
- data/src/window/history.js +62 -0
- data/src/window/location.js +138 -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 +127 -0
- data/src/xpath/expression.js +49 -0
- data/src/xpath/implementation.js +2482 -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/foo.html +8 -0
- data/test/foo.js +40 -0
- data/test/jquery.js +6002 -0
- data/test/x.js +1 -0
- data/test/y.js +1 -0
- metadata +245 -14
data/src/html/label.js
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
$debug("Defining HTMLLabelElement");
|
2
|
+
/*
|
3
|
+
* HTMLLabelElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLLabelElement = function(ownerDocument) {
|
6
|
+
this.HTMLInputCommon = HTMLInputCommon;
|
7
|
+
this.HTMLInputCommon(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLLabelElement.prototype = new HTMLInputCommon;
|
10
|
+
__extend__(HTMLLabelElement.prototype, inputElements_dataProperties);
|
11
|
+
__extend__(HTMLLabelElement.prototype, {
|
12
|
+
get htmlFor(){
|
13
|
+
return this.getAttribute('for');
|
14
|
+
},
|
15
|
+
set htmlFor(value){
|
16
|
+
this.setAttribute('for',value);
|
17
|
+
},
|
18
|
+
get dataFormatAs(){
|
19
|
+
return this.getAttribute('dataFormatAs');
|
20
|
+
},
|
21
|
+
set dataFormatAs(value){
|
22
|
+
this.setAttribute('dataFormatAs',value);
|
23
|
+
}
|
24
|
+
});
|
25
|
+
|
26
|
+
// $w.HTMLLabelElement = HTMLLabelElement;
|
data/src/html/legend.js
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
$debug("Defining HTMLLegendElement");
|
2
|
+
/*
|
3
|
+
* HTMLLegendElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLLegendElement = function(ownerDocument) {
|
6
|
+
this.HTMLInputCommon = HTMLInputCommon;
|
7
|
+
this.HTMLInputCommon(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLLegendElement.prototype = new HTMLInputCommon;
|
10
|
+
__extend__(HTMLLegendElement.prototype, {
|
11
|
+
get align(){
|
12
|
+
return this.getAttribute('align');
|
13
|
+
},
|
14
|
+
set align(value){
|
15
|
+
this.setAttribute('align',value);
|
16
|
+
}
|
17
|
+
});
|
18
|
+
|
19
|
+
// $w.HTMLLegendElement = HTMLLegendElement;
|
data/src/html/link.js
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
if(false){
|
2
|
+
/**
|
3
|
+
* Link - HTMLElement
|
4
|
+
*/
|
5
|
+
$w.__defineGetter__("Link", function(){
|
6
|
+
return function(){
|
7
|
+
throw new Error("Object cannot be created in this context");
|
8
|
+
};
|
9
|
+
});
|
10
|
+
}
|
11
|
+
|
12
|
+
|
13
|
+
$debug("Defining HTMLLinkElement");
|
14
|
+
/*
|
15
|
+
* HTMLLinkElement - DOM Level 2
|
16
|
+
*/
|
17
|
+
var HTMLLinkElement = function(ownerDocument) {
|
18
|
+
this.HTMLElement = HTMLElement;
|
19
|
+
this.HTMLElement(ownerDocument);
|
20
|
+
};
|
21
|
+
HTMLLinkElement.prototype = new HTMLElement;
|
22
|
+
__extend__(HTMLLinkElement.prototype, {
|
23
|
+
get disabled(){
|
24
|
+
return this.getAttribute('disabled');
|
25
|
+
},
|
26
|
+
set disabled(value){
|
27
|
+
this.setAttribute('disabled',value);
|
28
|
+
},
|
29
|
+
get charset(){
|
30
|
+
return this.getAttribute('charset');
|
31
|
+
},
|
32
|
+
set charset(value){
|
33
|
+
this.setAttribute('charset',value);
|
34
|
+
},
|
35
|
+
get href(){
|
36
|
+
return this.getAttribute('href');
|
37
|
+
},
|
38
|
+
set href(value){
|
39
|
+
this.setAttribute('href',value);
|
40
|
+
},
|
41
|
+
get hreflang(){
|
42
|
+
return this.getAttribute('hreflang');
|
43
|
+
},
|
44
|
+
set hreflang(value){
|
45
|
+
this.setAttribute('hreflang',value);
|
46
|
+
},
|
47
|
+
get media(){
|
48
|
+
return this.getAttribute('media');
|
49
|
+
},
|
50
|
+
set media(value){
|
51
|
+
this.setAttribute('media',value);
|
52
|
+
},
|
53
|
+
get rel(){
|
54
|
+
return this.getAttribute('rel');
|
55
|
+
},
|
56
|
+
set rel(value){
|
57
|
+
this.setAttribute('rel',value);
|
58
|
+
},
|
59
|
+
get rev(){
|
60
|
+
return this.getAttribute('rev');
|
61
|
+
},
|
62
|
+
set rev(value){
|
63
|
+
this.setAttribute('rev',value);
|
64
|
+
},
|
65
|
+
get target(){
|
66
|
+
return this.getAttribute('target');
|
67
|
+
},
|
68
|
+
set target(value){
|
69
|
+
this.setAttribute('target',value);
|
70
|
+
},
|
71
|
+
get type(){
|
72
|
+
return this.getAttribute('type');
|
73
|
+
},
|
74
|
+
set type(value){
|
75
|
+
this.setAttribute('type',value);
|
76
|
+
},
|
77
|
+
onload: function(event){
|
78
|
+
return __eval__(this.getAttribute('onload')||'', this)
|
79
|
+
}
|
80
|
+
});
|
81
|
+
|
82
|
+
// $w.HTMLLinkElement = HTMLLinkElement;
|
data/src/html/map.js
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
$debug("Defining HTMLMapElement");
|
2
|
+
/*
|
3
|
+
* HTMLMapElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLMapElement = function(ownerDocument) {
|
6
|
+
this.HTMLElement = HTMLElement;
|
7
|
+
this.HTMLElement(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLMapElement.prototype = new HTMLElement;
|
10
|
+
__extend__(HTMLMapElement.prototype, {
|
11
|
+
get areas(){
|
12
|
+
return this.getElementsByTagName('area');
|
13
|
+
},
|
14
|
+
get name(){
|
15
|
+
return this.getAttribute('name');
|
16
|
+
},
|
17
|
+
set name(value){
|
18
|
+
this.setAttribute('name',value);
|
19
|
+
}
|
20
|
+
});
|
21
|
+
|
22
|
+
// $w.HTMLMapElement = HTMLMapElement;
|
data/src/html/meta.js
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
$debug("Defining HTMLMetaElement");
|
2
|
+
/*
|
3
|
+
* HTMLMetaElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLMetaElement = function(ownerDocument) {
|
6
|
+
this.HTMLElement = HTMLElement;
|
7
|
+
this.HTMLElement(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLMetaElement.prototype = new HTMLElement;
|
10
|
+
__extend__(HTMLMetaElement.prototype, {
|
11
|
+
get content(){
|
12
|
+
return this.getAttribute('content');
|
13
|
+
},
|
14
|
+
set content(value){
|
15
|
+
this.setAttribute('content',value);
|
16
|
+
},
|
17
|
+
get httpEquiv(){
|
18
|
+
return this.getAttribute('http-equiv');
|
19
|
+
},
|
20
|
+
set httpEquiv(value){
|
21
|
+
this.setAttribute('http-equiv',value);
|
22
|
+
},
|
23
|
+
get name(){
|
24
|
+
return this.getAttribute('name');
|
25
|
+
},
|
26
|
+
set name(value){
|
27
|
+
this.setAttribute('name',value);
|
28
|
+
},
|
29
|
+
get scheme(){
|
30
|
+
return this.getAttribute('scheme');
|
31
|
+
},
|
32
|
+
set scheme(value){
|
33
|
+
this.setAttribute('scheme',value);
|
34
|
+
}
|
35
|
+
});
|
36
|
+
|
37
|
+
// $w.HTMLMetaElement = HTMLMetaElement;
|
data/src/html/object.js
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
$debug("Defining HTMLObjectElement");
|
2
|
+
/*
|
3
|
+
* HTMLObjectElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLObjectElement = function(ownerDocument) {
|
6
|
+
this.HTMLElement = HTMLElement;
|
7
|
+
this.HTMLElement(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLObjectElement.prototype = new HTMLElement;
|
10
|
+
__extend__(HTMLObjectElement.prototype, {
|
11
|
+
get code(){
|
12
|
+
return this.getAttribute('code');
|
13
|
+
},
|
14
|
+
set code(value){
|
15
|
+
this.setAttribute('code',value);
|
16
|
+
},
|
17
|
+
get archive(){
|
18
|
+
return this.getAttribute('archive');
|
19
|
+
},
|
20
|
+
set archive(value){
|
21
|
+
this.setAttribute('archive',value);
|
22
|
+
},
|
23
|
+
get codeBase(){
|
24
|
+
return this.getAttribute('codebase');
|
25
|
+
},
|
26
|
+
set codeBase(value){
|
27
|
+
this.setAttribute('codebase',value);
|
28
|
+
},
|
29
|
+
get codeType(){
|
30
|
+
return this.getAttribute('codetype');
|
31
|
+
},
|
32
|
+
set codeType(value){
|
33
|
+
this.setAttribute('codetype',value);
|
34
|
+
},
|
35
|
+
get data(){
|
36
|
+
return this.getAttribute('data');
|
37
|
+
},
|
38
|
+
set data(value){
|
39
|
+
this.setAttribute('data',value);
|
40
|
+
},
|
41
|
+
get declare(){
|
42
|
+
return this.getAttribute('declare');
|
43
|
+
},
|
44
|
+
set declare(value){
|
45
|
+
this.setAttribute('declare',value);
|
46
|
+
},
|
47
|
+
get height(){
|
48
|
+
return this.getAttribute('height');
|
49
|
+
},
|
50
|
+
set height(value){
|
51
|
+
this.setAttribute('height',value);
|
52
|
+
},
|
53
|
+
get standby(){
|
54
|
+
return this.getAttribute('standby');
|
55
|
+
},
|
56
|
+
set standby(value){
|
57
|
+
this.setAttribute('standby',value);
|
58
|
+
},
|
59
|
+
/*get tabIndex(){
|
60
|
+
return this.getAttribute('tabindex');
|
61
|
+
},
|
62
|
+
set tabIndex(value){
|
63
|
+
this.setAttribute('tabindex',value);
|
64
|
+
},*/
|
65
|
+
get type(){
|
66
|
+
return this.getAttribute('type');
|
67
|
+
},
|
68
|
+
set type(value){
|
69
|
+
this.setAttribute('type',value);
|
70
|
+
},
|
71
|
+
get useMap(){
|
72
|
+
return this.getAttribute('usemap');
|
73
|
+
},
|
74
|
+
set useMap(value){
|
75
|
+
this.setAttribute('usemap',value);
|
76
|
+
},
|
77
|
+
get width(){
|
78
|
+
return this.getAttribute('width');
|
79
|
+
},
|
80
|
+
set width(value){
|
81
|
+
this.setAttribute('width',value);
|
82
|
+
},
|
83
|
+
get contentDocument(){
|
84
|
+
return this.ownerDocument;
|
85
|
+
}
|
86
|
+
});
|
87
|
+
|
88
|
+
// $w.HTMLObjectElement = HTMLObjectElement;
|
89
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
$debug("Defining HTMLOptGroupElement");
|
2
|
+
/*
|
3
|
+
* HTMLOptGroupElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLOptGroupElement = function(ownerDocument) {
|
6
|
+
this.HTMLElement = HTMLElement;
|
7
|
+
this.HTMLElement(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLOptGroupElement.prototype = new HTMLElement;
|
10
|
+
__extend__(HTMLOptGroupElement.prototype, {
|
11
|
+
get disabled(){
|
12
|
+
return this.getAttribute('disabled');
|
13
|
+
},
|
14
|
+
set disabled(value){
|
15
|
+
this.setAttribute('disabled',value);
|
16
|
+
},
|
17
|
+
get label(){
|
18
|
+
return this.getAttribute('label');
|
19
|
+
},
|
20
|
+
set label(value){
|
21
|
+
this.setAttribute('label',value);
|
22
|
+
}
|
23
|
+
});
|
24
|
+
|
25
|
+
// $w.HTMLOptGroupElement = HTMLOptGroupElement;
|
data/src/html/option.js
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
$debug("Defining HTMLOptionElement");
|
2
|
+
/*
|
3
|
+
* HTMLOptionElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLOptionElement = function(ownerDocument) {
|
6
|
+
this.HTMLInputCommon = HTMLInputCommon;
|
7
|
+
this.HTMLInputCommon(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLOptionElement.prototype = new HTMLInputCommon;
|
10
|
+
__extend__(HTMLOptionElement.prototype, {
|
11
|
+
setAttributeNS : function(namespaceURI, qualifiedName, value) {
|
12
|
+
if (namespaceURI) {
|
13
|
+
throw new Error("unexpected namespaceURI");
|
14
|
+
}
|
15
|
+
this.setAttribute(qualifiedName, value);
|
16
|
+
},
|
17
|
+
setAttribute: function(name, value){
|
18
|
+
if (name != "selected") {
|
19
|
+
HTMLInputCommon.prototype.setAttribute.apply(this, arguments);
|
20
|
+
} else {
|
21
|
+
if(this.defaultSelected===null && this.selected!==null){
|
22
|
+
this.defaultSelected = this.selected;
|
23
|
+
}
|
24
|
+
var selectedValue = (value ? 'selected' : '');
|
25
|
+
if (this.getAttribute('selected') == selectedValue) {
|
26
|
+
// prevent inifinite loops (option's selected modifies
|
27
|
+
// select's value which modifies option's selected)
|
28
|
+
return;
|
29
|
+
}
|
30
|
+
HTMLInputCommon.prototype.setAttribute.call(this, 'selected', selectedValue);
|
31
|
+
if (value) {
|
32
|
+
// set select's value to this option's value (this also
|
33
|
+
// unselects previously selected value)
|
34
|
+
this.parentNode && (this.parentNode.value = this.value);
|
35
|
+
} else {
|
36
|
+
// if no other option is selected, select the first option in the select
|
37
|
+
var i, anythingSelected;
|
38
|
+
for (i=0; i<this.parentNode.options.length; i++) {
|
39
|
+
if (this.parentNode.options[i].selected) {
|
40
|
+
anythingSelected = true;
|
41
|
+
break;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
if (!anythingSelected) {
|
45
|
+
this.parentNode.value = this.parentNode.options[0].value;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
},
|
50
|
+
get defaultSelected(){
|
51
|
+
return this.getAttribute('defaultSelected');
|
52
|
+
},
|
53
|
+
set defaultSelected(value){
|
54
|
+
this.setAttribute('defaultSelected',value);
|
55
|
+
},
|
56
|
+
get index(){
|
57
|
+
var options = this.parent.childNodes;
|
58
|
+
for(var i; i<options.length;i++){
|
59
|
+
if(this == options[i])
|
60
|
+
return i;
|
61
|
+
}
|
62
|
+
return -1;
|
63
|
+
},
|
64
|
+
get label(){
|
65
|
+
return this.getAttribute('label');
|
66
|
+
},
|
67
|
+
set label(value){
|
68
|
+
this.setAttribute('label',value);
|
69
|
+
},
|
70
|
+
get selected(){
|
71
|
+
return (this.getAttribute('selected')=='selected');
|
72
|
+
},
|
73
|
+
set selected(value){
|
74
|
+
this.setAttribute('selected',value);
|
75
|
+
},
|
76
|
+
get text(){
|
77
|
+
return ((this.nodeValue === null) || (this.nodeValue ===undefined)) ?
|
78
|
+
this.innerHTML :
|
79
|
+
this.nodeValue;
|
80
|
+
},
|
81
|
+
get value(){
|
82
|
+
return ((this.getAttribute('value') === undefined) || (this.getAttribute('value') === null)) ?
|
83
|
+
this.text :
|
84
|
+
this.getAttribute('value');
|
85
|
+
},
|
86
|
+
set value(value){
|
87
|
+
this.setAttribute('value',value);
|
88
|
+
}
|
89
|
+
});
|
90
|
+
|
91
|
+
// $w.HTMLOptionElement = HTMLOptionElement;
|
92
|
+
|
93
|
+
// Local Variables:
|
94
|
+
// espresso-indent-level:4
|
95
|
+
// c-basic-offset:4
|
96
|
+
// tab-width:4
|
97
|
+
// End:
|
data/src/html/param.js
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
$debug("Defining HTMLParamElement");
|
2
|
+
/*
|
3
|
+
* HTMLParamElement - DOM Level 2
|
4
|
+
*/
|
5
|
+
var HTMLParamElement = function(ownerDocument) {
|
6
|
+
this.HTMLElement = HTMLElement;
|
7
|
+
this.HTMLElement(ownerDocument);
|
8
|
+
};
|
9
|
+
HTMLParamElement.prototype = new HTMLElement;
|
10
|
+
__extend__(HTMLParamElement.prototype, {
|
11
|
+
get name(){
|
12
|
+
return this.getAttribute('name');
|
13
|
+
},
|
14
|
+
set name(value){
|
15
|
+
this.setAttribute('name',value);
|
16
|
+
},
|
17
|
+
get type(){
|
18
|
+
return this.getAttribute('type');
|
19
|
+
},
|
20
|
+
set type(value){
|
21
|
+
this.setAttribute('type',value);
|
22
|
+
},
|
23
|
+
get value(){
|
24
|
+
return this.getAttribute('value');
|
25
|
+
},
|
26
|
+
set value(value){
|
27
|
+
this.setAttribute('value',value);
|
28
|
+
},
|
29
|
+
get valueType(){
|
30
|
+
return this.getAttribute('valuetype');
|
31
|
+
},
|
32
|
+
set valueType(value){
|
33
|
+
this.setAttribute('valuetype',value);
|
34
|
+
}
|
35
|
+
});
|
36
|
+
|
37
|
+
// $w.HTMLParamElement = HTMLParamElement;
|
38
|
+
|