| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 const unsigned short IMPORT_RULE = 3; | 31 const unsigned short IMPORT_RULE = 3; |
| 32 const unsigned short MEDIA_RULE = 4; | 32 const unsigned short MEDIA_RULE = 4; |
| 33 const unsigned short FONT_FACE_RULE = 5; | 33 const unsigned short FONT_FACE_RULE = 5; |
| 34 const unsigned short PAGE_RULE = 6; | 34 const unsigned short PAGE_RULE = 6; |
| 35 const unsigned short KEYFRAMES_RULE = 7; | 35 const unsigned short KEYFRAMES_RULE = 7; |
| 36 const unsigned short WEBKIT_KEYFRAMES_RULE = 7; | 36 const unsigned short WEBKIT_KEYFRAMES_RULE = 7; |
| 37 const unsigned short KEYFRAME_RULE = 8; | 37 const unsigned short KEYFRAME_RULE = 8; |
| 38 const unsigned short WEBKIT_KEYFRAME_RULE = 8; | 38 const unsigned short WEBKIT_KEYFRAME_RULE = 8; |
| 39 const unsigned short SUPPORTS_RULE = 12; | 39 const unsigned short SUPPORTS_RULE = 12; |
| 40 [RuntimeEnabled=CSSViewport] const unsigned short VIEWPORT_RULE = 15; | 40 [RuntimeEnabled=CSSViewport] const unsigned short VIEWPORT_RULE = 15; |
| 41 [RuntimeEnabled=CSSRegions] const unsigned short WEBKIT_REGION_RULE = 16; | |
| 42 const unsigned short WEBKIT_FILTER_RULE = 17; | 41 const unsigned short WEBKIT_FILTER_RULE = 17; |
| 43 | 42 |
| 44 readonly attribute unsigned short type; | 43 readonly attribute unsigned short type; |
| 45 | 44 |
| 46 attribute DOMString cssText; | 45 attribute DOMString cssText; |
| 47 | 46 |
| 48 readonly attribute CSSStyleSheet parentStyleSheet; | 47 readonly attribute CSSStyleSheet parentStyleSheet; |
| 49 readonly attribute CSSRule parentRule; | 48 readonly attribute CSSRule parentRule; |
| 50 | 49 |
| 51 }; | 50 }; |
| OLD | NEW |