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