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

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

Issue 252743004: A thread safe CSS calc parser for sizes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed CSSCalc tests that assert 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..46985d38ad25605a913e63e4b17eb78585b67af2 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;
+ MediaQueryTokenIterator 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