| OLD | NEW |
| 1 | 1 |
| 2 class HTMLLinkElementJs extends HTMLElementJs implements HTMLLinkElement native
"*HTMLLinkElement" { | 2 class _HTMLLinkElementJs extends _HTMLElementJs implements HTMLLinkElement nativ
e "*HTMLLinkElement" { |
| 3 | 3 |
| 4 String get charset() native "return this.charset;"; | 4 String get charset() native "return this.charset;"; |
| 5 | 5 |
| 6 void set charset(String value) native "this.charset = value;"; | 6 void set charset(String value) native "this.charset = 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 String get href() native "return this.href;"; | 12 String get href() native "return this.href;"; |
| 13 | 13 |
| 14 void set href(String value) native "this.href = value;"; | 14 void set href(String value) native "this.href = value;"; |
| 15 | 15 |
| 16 String get hreflang() native "return this.hreflang;"; | 16 String get hreflang() native "return this.hreflang;"; |
| 17 | 17 |
| 18 void set hreflang(String value) native "this.hreflang = value;"; | 18 void set hreflang(String value) native "this.hreflang = value;"; |
| 19 | 19 |
| 20 String get media() native "return this.media;"; | 20 String get media() native "return this.media;"; |
| 21 | 21 |
| 22 void set media(String value) native "this.media = value;"; | 22 void set media(String value) native "this.media = value;"; |
| 23 | 23 |
| 24 String get rel() native "return this.rel;"; | 24 String get rel() native "return this.rel;"; |
| 25 | 25 |
| 26 void set rel(String value) native "this.rel = value;"; | 26 void set rel(String value) native "this.rel = value;"; |
| 27 | 27 |
| 28 String get rev() native "return this.rev;"; | 28 String get rev() native "return this.rev;"; |
| 29 | 29 |
| 30 void set rev(String value) native "this.rev = value;"; | 30 void set rev(String value) native "this.rev = value;"; |
| 31 | 31 |
| 32 StyleSheetJs get sheet() native "return this.sheet;"; | 32 _StyleSheetJs get sheet() native "return this.sheet;"; |
| 33 | 33 |
| 34 DOMSettableTokenListJs get sizes() native "return this.sizes;"; | 34 _DOMSettableTokenListJs get sizes() native "return this.sizes;"; |
| 35 | 35 |
| 36 void set sizes(DOMSettableTokenListJs value) native "this.sizes = value;"; | 36 void set sizes(_DOMSettableTokenListJs value) native "this.sizes = value;"; |
| 37 | 37 |
| 38 String get target() native "return this.target;"; | 38 String get target() native "return this.target;"; |
| 39 | 39 |
| 40 void set target(String value) native "this.target = value;"; | 40 void set target(String value) native "this.target = value;"; |
| 41 | 41 |
| 42 String get type() native "return this.type;"; | 42 String get type() native "return this.type;"; |
| 43 | 43 |
| 44 void set type(String value) native "this.type = value;"; | 44 void set type(String value) native "this.type = value;"; |
| 45 } | 45 } |
| OLD | NEW |