OLD | NEW |
1 | 1 |
2 class CSSStyleDeclarationJs extends DOMTypeJs implements CSSStyleDeclaration nat
ive "*CSSStyleDeclaration" { | 2 class _CSSStyleDeclarationJs extends _DOMTypeJs implements CSSStyleDeclaration n
ative "*CSSStyleDeclaration" { |
3 | 3 |
4 String get cssText() native "return this.cssText;"; | 4 String get cssText() native "return this.cssText;"; |
5 | 5 |
6 void set cssText(String value) native "this.cssText = value;"; | 6 void set cssText(String value) native "this.cssText = value;"; |
7 | 7 |
8 int get length() native "return this.length;"; | 8 int get length() native "return this.length;"; |
9 | 9 |
10 CSSRuleJs get parentRule() native "return this.parentRule;"; | 10 _CSSRuleJs get parentRule() native "return this.parentRule;"; |
11 | 11 |
12 CSSValueJs getPropertyCSSValue(String propertyName) native; | 12 _CSSValueJs getPropertyCSSValue(String propertyName) native; |
13 | 13 |
14 String getPropertyPriority(String propertyName) native; | 14 String getPropertyPriority(String propertyName) native; |
15 | 15 |
16 String getPropertyShorthand(String propertyName) native; | 16 String getPropertyShorthand(String propertyName) native; |
17 | 17 |
18 String getPropertyValue(String propertyName) native; | 18 String getPropertyValue(String propertyName) native; |
19 | 19 |
20 bool isPropertyImplicit(String propertyName) native; | 20 bool isPropertyImplicit(String propertyName) native; |
21 | 21 |
22 String item(int index) native; | 22 String item(int index) native; |
23 | 23 |
24 String removeProperty(String propertyName) native; | 24 String removeProperty(String propertyName) native; |
25 | 25 |
26 void setProperty(String propertyName, String value, [String priority = null])
native; | 26 void setProperty(String propertyName, String value, [String priority = null])
native; |
27 } | 27 } |
OLD | NEW |