OLD | NEW |
1 | 1 |
2 class _StyleSheetJs extends _DOMTypeJs implements StyleSheet native "*StyleSheet
" { | 2 class _StyleSheetJs extends _DOMTypeJs implements StyleSheet native "*StyleSheet
" { |
3 | 3 |
4 bool get disabled() native "return this.disabled;"; | 4 bool disabled; |
5 | 5 |
6 void set disabled(bool value) native "this.disabled = value;"; | 6 final String href; |
7 | 7 |
8 String get href() native "return this.href;"; | 8 final _MediaListJs media; |
9 | 9 |
10 _MediaListJs get media() native "return this.media;"; | 10 final _NodeJs ownerNode; |
11 | 11 |
12 _NodeJs get ownerNode() native "return this.ownerNode;"; | 12 final _StyleSheetJs parentStyleSheet; |
13 | 13 |
14 _StyleSheetJs get parentStyleSheet() native "return this.parentStyleSheet;"; | 14 final String title; |
15 | 15 |
16 String get title() native "return this.title;"; | 16 final String type; |
17 | |
18 String get type() native "return this.type;"; | |
19 } | 17 } |
OLD | NEW |