blob: 45d61e27900ce443d72f60566e4aa265c3ee8f46 [file] [log] [blame]
ggaren23e4afa2006-04-21 16:29:02 +00001/*
darin@apple.comea40f5a2009-04-17 19:16:19 +00002 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
weinig6910ed02006-09-03 02:10:16 +00003 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
ggaren23e4afa2006-04-21 16:29:02 +00004 *
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
ddkilzerc8eccec2007-09-26 02:29:57 +000017 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
ggaren23e4afa2006-04-21 16:29:02 +000019 */
20
commit-queue@webkit.orga4d60d12012-10-12 11:44:58 +000021[
darin@apple.com4bd85232016-08-21 02:21:54 +000022 CustomToJSObject,
achristensen@apple.com760090a2016-08-22 15:51:58 +000023 ExportToWrappedFunction,
darin@apple.com4bd85232016-08-21 02:21:54 +000024 GenerateIsReachable,
akling@apple.comb15671a2013-02-24 13:01:06 +000025 JSCustomHeader,
commit-queue@webkit.orgcab10ce2012-10-12 06:10:17 +000026 JSCustomMarkFunction,
commit-queue@webkit.orga4d60d12012-10-12 11:44:58 +000027] interface CSSRule {
commit-queue@webkit.orgcab10ce2012-10-12 06:10:17 +000028 // 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.comd2a5e4c2014-11-15 23:02:43 +000036 const unsigned short KEYFRAMES_RULE = 7;
37 const unsigned short KEYFRAME_RULE = 8;
hyatt@apple.com1f589652016-12-10 18:31:13 +000038 const unsigned short NAMESPACE_RULE = 10;
commit-queue@webkit.org03dd24f2013-01-16 11:30:50 +000039 const unsigned short SUPPORTS_RULE = 12;
darin@apple.comfa677492016-10-17 00:16:05 +000040 [Conditional=CSS_DEVICE_ADAPTATION] const unsigned short WEBKIT_VIEWPORT_RULE = 15;
weinig6910ed02006-09-03 02:10:16 +000041
darin@apple.comfa677492016-10-17 00:16:05 +000042 // Legacy synonyms for the above, kept to avoid breaking existing content.
43 const unsigned short WEBKIT_KEYFRAMES_RULE = 7;
dino@apple.comd2a5e4c2014-11-15 23:02:43 +000044 const unsigned short WEBKIT_KEYFRAME_RULE = 8;
45
darin@apple.com4bd85232016-08-21 02:21:54 +000046 readonly attribute unsigned short type;
weinig100b4c62006-09-11 17:11:59 +000047
commit-queue@webkit.orgea40fa12017-09-24 02:38:07 +000048 attribute DOMString? cssText;
weinig6910ed02006-09-03 02:10:16 +000049
darin@apple.com4bd85232016-08-21 02:21:54 +000050 readonly attribute CSSStyleSheet? parentStyleSheet;
51 readonly attribute CSSRule? parentRule;
commit-queue@webkit.orgcab10ce2012-10-12 06:10:17 +000052};