| OLD | NEW |
| 1 | 1 |
| 2 class HTMLButtonElementJs extends HTMLElementJs implements HTMLButtonElement nat
ive "*HTMLButtonElement" { | 2 class _HTMLButtonElementJs extends _HTMLElementJs implements HTMLButtonElement n
ative "*HTMLButtonElement" { |
| 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 bool get disabled() native "return this.disabled;"; | 8 bool get disabled() native "return this.disabled;"; |
| 9 | 9 |
| 10 void set disabled(bool value) native "this.disabled = value;"; | 10 void set disabled(bool value) native "this.disabled = value;"; |
| 11 | 11 |
| 12 HTMLFormElementJs get form() native "return this.form;"; | 12 _HTMLFormElementJs get form() native "return this.form;"; |
| 13 | 13 |
| 14 String get formAction() native "return this.formAction;"; | 14 String get formAction() native "return this.formAction;"; |
| 15 | 15 |
| 16 void set formAction(String value) native "this.formAction = value;"; | 16 void set formAction(String value) native "this.formAction = value;"; |
| 17 | 17 |
| 18 String get formEnctype() native "return this.formEnctype;"; | 18 String get formEnctype() native "return this.formEnctype;"; |
| 19 | 19 |
| 20 void set formEnctype(String value) native "this.formEnctype = value;"; | 20 void set formEnctype(String value) native "this.formEnctype = value;"; |
| 21 | 21 |
| 22 String get formMethod() native "return this.formMethod;"; | 22 String get formMethod() native "return this.formMethod;"; |
| 23 | 23 |
| 24 void set formMethod(String value) native "this.formMethod = value;"; | 24 void set formMethod(String value) native "this.formMethod = value;"; |
| 25 | 25 |
| 26 bool get formNoValidate() native "return this.formNoValidate;"; | 26 bool get formNoValidate() native "return this.formNoValidate;"; |
| 27 | 27 |
| 28 void set formNoValidate(bool value) native "this.formNoValidate = value;"; | 28 void set formNoValidate(bool value) native "this.formNoValidate = value;"; |
| 29 | 29 |
| 30 String get formTarget() native "return this.formTarget;"; | 30 String get formTarget() native "return this.formTarget;"; |
| 31 | 31 |
| 32 void set formTarget(String value) native "this.formTarget = value;"; | 32 void set formTarget(String value) native "this.formTarget = value;"; |
| 33 | 33 |
| 34 NodeListJs get labels() native "return this.labels;"; | 34 _NodeListJs get labels() native "return this.labels;"; |
| 35 | 35 |
| 36 String get name() native "return this.name;"; | 36 String get name() native "return this.name;"; |
| 37 | 37 |
| 38 void set name(String value) native "this.name = value;"; | 38 void set name(String value) native "this.name = value;"; |
| 39 | 39 |
| 40 String get type() native "return this.type;"; | 40 String get type() native "return this.type;"; |
| 41 | 41 |
| 42 String get validationMessage() native "return this.validationMessage;"; | 42 String get validationMessage() native "return this.validationMessage;"; |
| 43 | 43 |
| 44 ValidityStateJs get validity() native "return this.validity;"; | 44 _ValidityStateJs get validity() native "return this.validity;"; |
| 45 | 45 |
| 46 String get value() native "return this.value;"; | 46 String get value() native "return this.value;"; |
| 47 | 47 |
| 48 void set value(String value) native "this.value = value;"; | 48 void set value(String value) native "this.value = value;"; |
| 49 | 49 |
| 50 bool get willValidate() native "return this.willValidate;"; | 50 bool get willValidate() native "return this.willValidate;"; |
| 51 | 51 |
| 52 bool checkValidity() native; | 52 bool checkValidity() native; |
| 53 | 53 |
| 54 void click() native; | 54 void click() native; |
| 55 | 55 |
| 56 void setCustomValidity(String error) native; | 56 void setCustomValidity(String error) native; |
| 57 } | 57 } |
| OLD | NEW |