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

Unified Diff: Source/core/css/parser/MediaConditionTest.cpp

Issue 240063003: Revert "A sizes attribute parser" (https://codereview.chromium.org/224733011) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/MediaValuesDynamic.cpp ('k') | Source/core/css/parser/MediaQueryParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/parser/MediaConditionTest.cpp
diff --git a/Source/core/css/parser/MediaConditionTest.cpp b/Source/core/css/parser/MediaConditionTest.cpp
index 460992f5f4d0525b73c4b98e9fba2903cc7d6941..fd4c048efce69a5f5f502a6330429431abb9c04a 100644
--- a/Source/core/css/parser/MediaConditionTest.cpp
+++ b/Source/core/css/parser/MediaConditionTest.cpp
@@ -41,7 +41,7 @@ TEST(MediaConditionParserTest, Basic)
for (unsigned i = 0; testCases[i].input; ++i) {
Vector<MediaQueryToken> tokens;
MediaQueryTokenizer::tokenize(testCases[i].input, tokens);
- TokenIterator endToken;
+ MediaQueryParser::TokenIterator endToken;
// Stop the input once we hit a comma token
for (endToken = tokens.begin(); endToken != tokens.end() && endToken->type() != CommaToken; ++endToken) { }
RefPtrWillBeRawPtr<MediaQuerySet> mediaConditionQuerySet = MediaQueryParser::parseMediaCondition(tokens.begin(), endToken);
« no previous file with comments | « Source/core/css/MediaValuesDynamic.cpp ('k') | Source/core/css/parser/MediaQueryParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698