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