OLD | NEW |
| (Empty) |
1 | |
2 class _CSSRuleJs extends _DOMTypeJs implements CSSRule native "*CSSRule" { | |
3 | |
4 static final int CHARSET_RULE = 2; | |
5 | |
6 static final int FONT_FACE_RULE = 5; | |
7 | |
8 static final int IMPORT_RULE = 3; | |
9 | |
10 static final int MEDIA_RULE = 4; | |
11 | |
12 static final int PAGE_RULE = 6; | |
13 | |
14 static final int STYLE_RULE = 1; | |
15 | |
16 static final int UNKNOWN_RULE = 0; | |
17 | |
18 static final int WEBKIT_KEYFRAMES_RULE = 7; | |
19 | |
20 static final int WEBKIT_KEYFRAME_RULE = 8; | |
21 | |
22 static final int WEBKIT_REGION_RULE = 10; | |
23 | |
24 String cssText; | |
25 | |
26 final _CSSRuleJs parentRule; | |
27 | |
28 final _CSSStyleSheetJs parentStyleSheet; | |
29 | |
30 final int type; | |
31 } | |
OLD | NEW |