| OLD | NEW |
| 1 | 1 |
| 2 class HTMLScriptElement extends HTMLElement native "*HTMLScriptElement" { | 2 class HTMLScriptElement extends HTMLElement native "*HTMLScriptElement" { |
| 3 | 3 |
| 4 bool async; | 4 bool get async() native "return this.async;"; |
| 5 | 5 |
| 6 String charset; | 6 void set async(bool value) native "this.async = value;"; |
| 7 | 7 |
| 8 bool defer; | 8 String get charset() native "return this.charset;"; |
| 9 | 9 |
| 10 String event; | 10 void set charset(String value) native "this.charset = value;"; |
| 11 | 11 |
| 12 String htmlFor; | 12 bool get defer() native "return this.defer;"; |
| 13 | 13 |
| 14 String src; | 14 void set defer(bool value) native "this.defer = value;"; |
| 15 | 15 |
| 16 String text; | 16 String get event() native "return this.event;"; |
| 17 | 17 |
| 18 String type; | 18 void set event(String value) native "this.event = value;"; |
| 19 |
| 20 String get htmlFor() native "return this.htmlFor;"; |
| 21 |
| 22 void set htmlFor(String value) native "this.htmlFor = value;"; |
| 23 |
| 24 String get src() native "return this.src;"; |
| 25 |
| 26 void set src(String value) native "this.src = value;"; |
| 27 |
| 28 String get text() native "return this.text;"; |
| 29 |
| 30 void set text(String value) native "this.text = value;"; |
| 31 |
| 32 String get type() native "return this.type;"; |
| 33 |
| 34 void set type(String value) native "this.type = value;"; |
| 19 } | 35 } |
| OLD | NEW |