OLD | NEW |
1 | 1 |
2 class HTMLFormElementJs extends HTMLElementJs implements HTMLFormElement native
"*HTMLFormElement" { | 2 class _HTMLFormElementJs extends _HTMLElementJs implements HTMLFormElement nativ
e "*HTMLFormElement" { |
3 | 3 |
4 String get acceptCharset() native "return this.acceptCharset;"; | 4 String get acceptCharset() native "return this.acceptCharset;"; |
5 | 5 |
6 void set acceptCharset(String value) native "this.acceptCharset = value;"; | 6 void set acceptCharset(String value) native "this.acceptCharset = value;"; |
7 | 7 |
8 String get action() native "return this.action;"; | 8 String get action() native "return this.action;"; |
9 | 9 |
10 void set action(String value) native "this.action = value;"; | 10 void set action(String value) native "this.action = value;"; |
11 | 11 |
12 String get autocomplete() native "return this.autocomplete;"; | 12 String get autocomplete() native "return this.autocomplete;"; |
13 | 13 |
14 void set autocomplete(String value) native "this.autocomplete = value;"; | 14 void set autocomplete(String value) native "this.autocomplete = value;"; |
15 | 15 |
16 HTMLCollectionJs get elements() native "return this.elements;"; | 16 _HTMLCollectionJs get elements() native "return this.elements;"; |
17 | 17 |
18 String get encoding() native "return this.encoding;"; | 18 String get encoding() native "return this.encoding;"; |
19 | 19 |
20 void set encoding(String value) native "this.encoding = value;"; | 20 void set encoding(String value) native "this.encoding = value;"; |
21 | 21 |
22 String get enctype() native "return this.enctype;"; | 22 String get enctype() native "return this.enctype;"; |
23 | 23 |
24 void set enctype(String value) native "this.enctype = value;"; | 24 void set enctype(String value) native "this.enctype = value;"; |
25 | 25 |
26 int get length() native "return this.length;"; | 26 int get length() native "return this.length;"; |
(...skipping 13 matching lines...) Expand all Loading... |
40 String get target() native "return this.target;"; | 40 String get target() native "return this.target;"; |
41 | 41 |
42 void set target(String value) native "this.target = value;"; | 42 void set target(String value) native "this.target = value;"; |
43 | 43 |
44 bool checkValidity() native; | 44 bool checkValidity() native; |
45 | 45 |
46 void reset() native; | 46 void reset() native; |
47 | 47 |
48 void submit() native; | 48 void submit() native; |
49 } | 49 } |
OLD | NEW |