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

Side by Side Diff: Source/core/css/parser/CSSTokenizer.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/CSSParserValues.cpp ('k') | Source/core/css/parser/CSSTokenizer.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 CSSTokenizer_h 5 #ifndef CSSTokenizer_h
6 #define CSSTokenizer_h 6 #define CSSTokenizer_h
7 7
8 #include "core/css/parser/CSSParserToken.h" 8 #include "core/css/parser/CSSParserToken.h"
9 #include "core/html/parser/InputStreamPreprocessor.h" 9 #include "core/html/parser/InputStreamPreprocessor.h"
10 #include "wtf/text/WTFString.h" 10 #include "wtf/text/WTFString.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 CSSParserToken leftParenthesis(UChar); 63 CSSParserToken leftParenthesis(UChar);
64 CSSParserToken rightParenthesis(UChar); 64 CSSParserToken rightParenthesis(UChar);
65 CSSParserToken leftBracket(UChar); 65 CSSParserToken leftBracket(UChar);
66 CSSParserToken rightBracket(UChar); 66 CSSParserToken rightBracket(UChar);
67 CSSParserToken leftBrace(UChar); 67 CSSParserToken leftBrace(UChar);
68 CSSParserToken rightBrace(UChar); 68 CSSParserToken rightBrace(UChar);
69 CSSParserToken plusOrFullStop(UChar); 69 CSSParserToken plusOrFullStop(UChar);
70 CSSParserToken comma(UChar); 70 CSSParserToken comma(UChar);
71 CSSParserToken hyphenMinus(UChar); 71 CSSParserToken hyphenMinus(UChar);
72 CSSParserToken asterisk(UChar); 72 CSSParserToken asterisk(UChar);
73 CSSParserToken lessThan(UChar);
73 CSSParserToken solidus(UChar); 74 CSSParserToken solidus(UChar);
74 CSSParserToken colon(UChar); 75 CSSParserToken colon(UChar);
75 CSSParserToken semiColon(UChar); 76 CSSParserToken semiColon(UChar);
76 CSSParserToken hash(UChar); 77 CSSParserToken hash(UChar);
77 CSSParserToken circumflexAccent(UChar); 78 CSSParserToken circumflexAccent(UChar);
78 CSSParserToken dollarSign(UChar); 79 CSSParserToken dollarSign(UChar);
79 CSSParserToken verticalLine(UChar); 80 CSSParserToken verticalLine(UChar);
80 CSSParserToken tilde(UChar); 81 CSSParserToken tilde(UChar);
81 CSSParserToken commercialAt(UChar); 82 CSSParserToken commercialAt(UChar);
82 CSSParserToken reverseSolidus(UChar); 83 CSSParserToken reverseSolidus(UChar);
83 CSSParserToken asciiDigit(UChar); 84 CSSParserToken asciiDigit(UChar);
84 CSSParserToken letterU(UChar); 85 CSSParserToken letterU(UChar);
85 CSSParserToken nameStart(UChar); 86 CSSParserToken nameStart(UChar);
86 CSSParserToken stringStart(UChar); 87 CSSParserToken stringStart(UChar);
87 CSSParserToken endOfFile(UChar); 88 CSSParserToken endOfFile(UChar);
88 89
89 CSSTokenizerInputStream& m_input; 90 CSSTokenizerInputStream& m_input;
90 }; 91 };
91 92
92 93
93 94
94 } // namespace blink 95 } // namespace blink
95 96
96 #endif // CSSTokenizer_h 97 #endif // CSSTokenizer_h
OLDNEW
« no previous file with comments | « Source/core/css/parser/CSSParserValues.cpp ('k') | Source/core/css/parser/CSSTokenizer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698