| OLD | NEW |
| 1 | 1 |
| 2 class CSSRule native "CSSRule" { | 2 class CSSRule native "CSSRule" { |
| 3 | 3 |
| 4 static final int CHARSET_RULE = 2; | 4 static final int CHARSET_RULE = 2; |
| 5 | 5 |
| 6 static final int FONT_FACE_RULE = 5; | 6 static final int FONT_FACE_RULE = 5; |
| 7 | 7 |
| 8 static final int IMPORT_RULE = 3; | 8 static final int IMPORT_RULE = 3; |
| 9 | 9 |
| 10 static final int MEDIA_RULE = 4; | 10 static final int MEDIA_RULE = 4; |
| 11 | 11 |
| 12 static final int PAGE_RULE = 6; | 12 static final int PAGE_RULE = 6; |
| 13 | 13 |
| 14 static final int STYLE_RULE = 1; | 14 static final int STYLE_RULE = 1; |
| 15 | 15 |
| 16 static final int UNKNOWN_RULE = 0; | 16 static final int UNKNOWN_RULE = 0; |
| 17 | 17 |
| 18 static final int WEBKIT_KEYFRAMES_RULE = 8; | 18 static final int WEBKIT_KEYFRAMES_RULE = 8; |
| 19 | 19 |
| 20 static final int WEBKIT_KEYFRAME_RULE = 9; | 20 static final int WEBKIT_KEYFRAME_RULE = 9; |
| 21 | 21 |
| 22 static final int WEBKIT_REGION_STYLE_RULE = 10; | 22 static final int WEBKIT_REGION_RULE = 10; |
| 23 | 23 |
| 24 String cssText; | 24 String cssText; |
| 25 | 25 |
| 26 CSSRule parentRule; | 26 CSSRule parentRule; |
| 27 | 27 |
| 28 CSSStyleSheet parentStyleSheet; | 28 CSSStyleSheet parentStyleSheet; |
| 29 | 29 |
| 30 int type; | 30 int type; |
| 31 | 31 |
| 32 var dartObjectLocalStorage; | 32 var dartObjectLocalStorage; |
| 33 | 33 |
| 34 String get typeName() native; | 34 String get typeName() native; |
| 35 } | 35 } |
| OLD | NEW |