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 get disabled() native "return this.disabled;"; |
5 | 5 |
6 void set disabled(bool value) native "this.disabled = value;"; | 6 void set disabled(bool value) native "this.disabled = value;"; |
7 | 7 |
8 String get href() native "return this.href;"; | 8 String get href() native "return this.href;"; |
9 | 9 |
10 MediaListJs get media() native "return this.media;"; | 10 _MediaListJs get media() native "return this.media;"; |
11 | 11 |
12 NodeJs get ownerNode() native "return this.ownerNode;"; | 12 _NodeJs get ownerNode() native "return this.ownerNode;"; |
13 | 13 |
14 StyleSheetJs get parentStyleSheet() native "return this.parentStyleSheet;"; | 14 _StyleSheetJs get parentStyleSheet() native "return this.parentStyleSheet;"; |
15 | 15 |
16 String get title() native "return this.title;"; | 16 String get title() native "return this.title;"; |
17 | 17 |
18 String get type() native "return this.type;"; | 18 String get type() native "return this.type;"; |
19 } | 19 } |
OLD | NEW |