| OLD | NEW |
| 1 | 1 |
| 2 class HTMLOutputElement extends HTMLElement native "*HTMLOutputElement" { | 2 class HTMLOutputElement extends HTMLElement native "*HTMLOutputElement" { |
| 3 | 3 |
| 4 String defaultValue; | 4 String get defaultValue() native "return this.defaultValue;"; |
| 5 | 5 |
| 6 HTMLFormElement form; | 6 void set defaultValue(String value) native "this.defaultValue = value;"; |
| 7 | 7 |
| 8 DOMSettableTokenList htmlFor; | 8 HTMLFormElement get form() native "return this.form;"; |
| 9 | 9 |
| 10 NodeList labels; | 10 DOMSettableTokenList get htmlFor() native "return this.htmlFor;"; |
| 11 | 11 |
| 12 String name; | 12 void set htmlFor(DOMSettableTokenList value) native "this.htmlFor = value;"; |
| 13 | 13 |
| 14 String type; | 14 NodeList get labels() native "return this.labels;"; |
| 15 | 15 |
| 16 String validationMessage; | 16 String get name() native "return this.name;"; |
| 17 | 17 |
| 18 ValidityState validity; | 18 void set name(String value) native "this.name = value;"; |
| 19 | 19 |
| 20 String value; | 20 String get type() native "return this.type;"; |
| 21 | 21 |
| 22 bool willValidate; | 22 String get validationMessage() native "return this.validationMessage;"; |
| 23 |
| 24 ValidityState get validity() native "return this.validity;"; |
| 25 |
| 26 String get value() native "return this.value;"; |
| 27 |
| 28 void set value(String value) native "this.value = value;"; |
| 29 |
| 30 bool get willValidate() native "return this.willValidate;"; |
| 23 | 31 |
| 24 bool checkValidity() native; | 32 bool checkValidity() native; |
| 25 | 33 |
| 26 void setCustomValidity(String error) native; | 34 void setCustomValidity(String error) native; |
| 27 } | 35 } |
| OLD | NEW |