ggaren | 23e4afa | 2006-04-21 16:29:02 +0000 | [diff] [blame] | 1 | /* |
darin@apple.com | ea40f5a | 2009-04-17 19:16:19 +0000 | [diff] [blame] | 2 | * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
weinig | 6910ed0 | 2006-09-03 02:10:16 +0000 | [diff] [blame] | 3 | * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
ggaren | 23e4afa | 2006-04-21 16:29:02 +0000 | [diff] [blame] | 4 | * |
| 5 | * This library is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU Library General Public |
| 7 | * License as published by the Free Software Foundation; either |
| 8 | * version 2 of the License, or (at your option) any later version. |
| 9 | * |
| 10 | * This library is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | * Library General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU Library General Public License |
| 16 | * along with this library; see the file COPYING.LIB. If not, write to |
ddkilzer | c8eccec | 2007-09-26 02:29:57 +0000 | [diff] [blame] | 17 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 | * Boston, MA 02110-1301, USA. |
ggaren | 23e4afa | 2006-04-21 16:29:02 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
commit-queue@webkit.org | a4d60d1 | 2012-10-12 11:44:58 +0000 | [diff] [blame] | 21 | [ |
darin@apple.com | 4bd8523 | 2016-08-21 02:21:54 +0000 | [diff] [blame] | 22 | CustomToJSObject, |
achristensen@apple.com | 760090a | 2016-08-22 15:51:58 +0000 | [diff] [blame] | 23 | ExportToWrappedFunction, |
darin@apple.com | 4bd8523 | 2016-08-21 02:21:54 +0000 | [diff] [blame] | 24 | GenerateIsReachable, |
akling@apple.com | b15671a | 2013-02-24 13:01:06 +0000 | [diff] [blame] | 25 | JSCustomHeader, |
commit-queue@webkit.org | cab10ce | 2012-10-12 06:10:17 +0000 | [diff] [blame] | 26 | JSCustomMarkFunction, |
commit-queue@webkit.org | a4d60d1 | 2012-10-12 11:44:58 +0000 | [diff] [blame] | 27 | ] interface CSSRule { |
commit-queue@webkit.org | cab10ce | 2012-10-12 06:10:17 +0000 | [diff] [blame] | 28 | // RuleType |
| 29 | const unsigned short UNKNOWN_RULE = 0; |
| 30 | const unsigned short STYLE_RULE = 1; |
| 31 | const unsigned short CHARSET_RULE = 2; |
| 32 | const unsigned short IMPORT_RULE = 3; |
| 33 | const unsigned short MEDIA_RULE = 4; |
| 34 | const unsigned short FONT_FACE_RULE = 5; |
| 35 | const unsigned short PAGE_RULE = 6; |
dino@apple.com | d2a5e4c | 2014-11-15 23:02:43 +0000 | [diff] [blame] | 36 | const unsigned short KEYFRAMES_RULE = 7; |
| 37 | const unsigned short KEYFRAME_RULE = 8; |
hyatt@apple.com | 1f58965 | 2016-12-10 18:31:13 +0000 | [diff] [blame] | 38 | const unsigned short NAMESPACE_RULE = 10; |
commit-queue@webkit.org | 03dd24f | 2013-01-16 11:30:50 +0000 | [diff] [blame] | 39 | const unsigned short SUPPORTS_RULE = 12; |
darin@apple.com | fa67749 | 2016-10-17 00:16:05 +0000 | [diff] [blame] | 40 | [Conditional=CSS_DEVICE_ADAPTATION] const unsigned short WEBKIT_VIEWPORT_RULE = 15; |
weinig | 6910ed0 | 2006-09-03 02:10:16 +0000 | [diff] [blame] | 41 | |
darin@apple.com | fa67749 | 2016-10-17 00:16:05 +0000 | [diff] [blame] | 42 | // Legacy synonyms for the above, kept to avoid breaking existing content. |
| 43 | const unsigned short WEBKIT_KEYFRAMES_RULE = 7; |
dino@apple.com | d2a5e4c | 2014-11-15 23:02:43 +0000 | [diff] [blame] | 44 | const unsigned short WEBKIT_KEYFRAME_RULE = 8; |
| 45 | |
darin@apple.com | 4bd8523 | 2016-08-21 02:21:54 +0000 | [diff] [blame] | 46 | readonly attribute unsigned short type; |
weinig | 100b4c6 | 2006-09-11 17:11:59 +0000 | [diff] [blame] | 47 | |
commit-queue@webkit.org | ea40fa1 | 2017-09-24 02:38:07 +0000 | [diff] [blame] | 48 | attribute DOMString? cssText; |
weinig | 6910ed0 | 2006-09-03 02:10:16 +0000 | [diff] [blame] | 49 | |
darin@apple.com | 4bd8523 | 2016-08-21 02:21:54 +0000 | [diff] [blame] | 50 | readonly attribute CSSStyleSheet? parentStyleSheet; |
| 51 | readonly attribute CSSRule? parentRule; |
commit-queue@webkit.org | cab10ce | 2012-10-12 06:10:17 +0000 | [diff] [blame] | 52 | }; |