Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Side by Side Diff: Source/core/css/CSSRule.h

Issue 13646013: Enable support for CSS Conditional Rules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSParser.cpp ('k') | Source/core/css/CSSRule.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * (C) 2002-2003 Dirk Mueller (mueller@kde.org) 3 * (C) 2002-2003 Dirk Mueller (mueller@kde.org)
4 * Copyright (C) 2002, 2006, 2007, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2002, 2006, 2007, 2012 Apple Inc. All rights reserved.
5 * Copyright (C) 2011 Andreas Kling (kling@webkit.org) 5 * Copyright (C) 2011 Andreas Kling (kling@webkit.org)
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 CHARSET_RULE, 43 CHARSET_RULE,
44 IMPORT_RULE, 44 IMPORT_RULE,
45 MEDIA_RULE, 45 MEDIA_RULE,
46 FONT_FACE_RULE, 46 FONT_FACE_RULE,
47 PAGE_RULE, 47 PAGE_RULE,
48 // 7 was VARIABLES_RULE; we now match other browsers with 7 as 48 // 7 was VARIABLES_RULE; we now match other browsers with 7 as
49 // KEYFRAMES_RULE: 49 // KEYFRAMES_RULE:
50 // <https://bugs.webkit.org/show_bug.cgi?id=71293>. 50 // <https://bugs.webkit.org/show_bug.cgi?id=71293>.
51 WEBKIT_KEYFRAMES_RULE, 51 WEBKIT_KEYFRAMES_RULE,
52 WEBKIT_KEYFRAME_RULE, 52 WEBKIT_KEYFRAME_RULE,
53 #if ENABLE(CSS3_CONDITIONAL_RULES)
54 SUPPORTS_RULE = 12, 53 SUPPORTS_RULE = 12,
55 #endif
56 #if ENABLE(CSS_DEVICE_ADAPTATION) 54 #if ENABLE(CSS_DEVICE_ADAPTATION)
57 WEBKIT_VIEWPORT_RULE = 15, 55 WEBKIT_VIEWPORT_RULE = 15,
58 #endif 56 #endif
59 #if ENABLE(CSS_REGIONS) 57 #if ENABLE(CSS_REGIONS)
60 WEBKIT_REGION_RULE = 16, 58 WEBKIT_REGION_RULE = 16,
61 #endif 59 #endif
62 WEBKIT_FILTER_RULE = 17, 60 WEBKIT_FILTER_RULE = 17,
63 HOST_RULE = 1001, 61 HOST_RULE = 1001,
64 }; 62 };
65 63
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 109
112 union { 110 union {
113 CSSRule* m_parentRule; 111 CSSRule* m_parentRule;
114 CSSStyleSheet* m_parentStyleSheet; 112 CSSStyleSheet* m_parentStyleSheet;
115 }; 113 };
116 }; 114 };
117 115
118 } // namespace WebCore 116 } // namespace WebCore
119 117
120 #endif // CSSRule_h 118 #endif // CSSRule_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSParser.cpp ('k') | Source/core/css/CSSRule.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698