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

Side by Side Diff: Source/core/css/parser/CSSParserToken.h

Issue 825063004: CSS Parser: Support CDO and CDC tokens (<!--, -->) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@lang
Patch Set: Created 5 years, 11 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
« no previous file with comments | « Source/core/css/parser/CSSParserImpl.cpp ('k') | Source/core/css/parser/CSSParserValues.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CSSParserToken_h 5 #ifndef CSSParserToken_h
6 #define CSSParserToken_h 6 #define CSSParserToken_h
7 7
8 #include "core/css/CSSPrimitiveValue.h" 8 #include "core/css/CSSPrimitiveValue.h"
9 #include "wtf/text/WTFString.h" 9 #include "wtf/text/WTFString.h"
10 10
(...skipping 11 matching lines...) Expand all
22 PercentageToken, 22 PercentageToken,
23 DimensionToken, 23 DimensionToken,
24 IncludeMatchToken, 24 IncludeMatchToken,
25 DashMatchToken, 25 DashMatchToken,
26 PrefixMatchToken, 26 PrefixMatchToken,
27 SuffixMatchToken, 27 SuffixMatchToken,
28 SubstringMatchToken, 28 SubstringMatchToken,
29 ColumnToken, 29 ColumnToken,
30 UnicodeRangeToken, 30 UnicodeRangeToken,
31 WhitespaceToken, 31 WhitespaceToken,
32 CDOToken,
33 CDCToken,
32 ColonToken, 34 ColonToken,
33 SemicolonToken, 35 SemicolonToken,
34 CommaToken, 36 CommaToken,
35 LeftParenthesisToken, 37 LeftParenthesisToken,
36 RightParenthesisToken, 38 RightParenthesisToken,
37 LeftBracketToken, 39 LeftBracketToken,
38 RightBracketToken, 40 RightBracketToken,
39 LeftBraceToken, 41 LeftBraceToken,
40 RightBraceToken, 42 RightBraceToken,
41 StringToken, 43 StringToken,
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 CSSPrimitiveValue::UnitType m_unit; 113 CSSPrimitiveValue::UnitType m_unit;
112 UChar32 m_unicodeRangeStart; 114 UChar32 m_unicodeRangeStart;
113 UChar32 m_unicodeRangeEnd; 115 UChar32 m_unicodeRangeEnd;
114 116
115 BlockType m_blockType; 117 BlockType m_blockType;
116 }; 118 };
117 119
118 } // namespace 120 } // namespace
119 121
120 #endif // CSSSParserToken_h 122 #endif // CSSSParserToken_h
OLDNEW
« no previous file with comments | « Source/core/css/parser/CSSParserImpl.cpp ('k') | Source/core/css/parser/CSSParserValues.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698