OLD | NEW |
1 | 1 |
2 class _HTMLKeygenElementJs extends _HTMLElementJs implements HTMLKeygenElement n
ative "*HTMLKeygenElement" { | 2 class _HTMLKeygenElementJs extends _HTMLElementJs implements HTMLKeygenElement n
ative "*HTMLKeygenElement" { |
3 | 3 |
4 bool get autofocus() native "return this.autofocus;"; | 4 bool autofocus; |
5 | 5 |
6 void set autofocus(bool value) native "this.autofocus = value;"; | 6 String challenge; |
7 | 7 |
8 String get challenge() native "return this.challenge;"; | 8 bool disabled; |
9 | 9 |
10 void set challenge(String value) native "this.challenge = value;"; | 10 final _HTMLFormElementJs form; |
11 | 11 |
12 bool get disabled() native "return this.disabled;"; | 12 String keytype; |
13 | 13 |
14 void set disabled(bool value) native "this.disabled = value;"; | 14 final _NodeListJs labels; |
15 | 15 |
16 _HTMLFormElementJs get form() native "return this.form;"; | 16 String name; |
17 | 17 |
18 String get keytype() native "return this.keytype;"; | 18 final String type; |
19 | 19 |
20 void set keytype(String value) native "this.keytype = value;"; | 20 final String validationMessage; |
21 | 21 |
22 _NodeListJs get labels() native "return this.labels;"; | 22 final _ValidityStateJs validity; |
23 | 23 |
24 String get name() native "return this.name;"; | 24 final bool willValidate; |
25 | |
26 void set name(String value) native "this.name = value;"; | |
27 | |
28 String get type() native "return this.type;"; | |
29 | |
30 String get validationMessage() native "return this.validationMessage;"; | |
31 | |
32 _ValidityStateJs get validity() native "return this.validity;"; | |
33 | |
34 bool get willValidate() native "return this.willValidate;"; | |
35 | 25 |
36 bool checkValidity() native; | 26 bool checkValidity() native; |
37 | 27 |
38 void setCustomValidity(String error) native; | 28 void setCustomValidity(String error) native; |
39 } | 29 } |
OLD | NEW |