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

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

Issue 1192983003: CSS Custom Properties (Variables) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ToT-ed again... Created 5 years, 5 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
Index: Source/core/css/parser/CSSTokenizerTest.cpp
diff --git a/Source/core/css/parser/CSSTokenizerTest.cpp b/Source/core/css/parser/CSSTokenizerTest.cpp
index 68791cbf08382f9228c8c663cef51564dacce1a5..20c766e5af1059ab56e447cb894abe49479e7ce0 100644
--- a/Source/core/css/parser/CSSTokenizerTest.cpp
+++ b/Source/core/css/parser/CSSTokenizerTest.cpp
@@ -66,9 +66,9 @@ void testTokens(const String& string, const CSSParserToken& token1, const CSSPar
expectedTokens.append(token3);
}
+ CSSTokenizer::Scope actualScope(string);
Timothy Loh 2015/07/23 08:11:47 change not needed?
CSSParserTokenRange expected(expectedTokens);
- CSSTokenizer::Scope actualScope(string);
CSSParserTokenRange actual = actualScope.tokenRange();
// Just check that serialization doesn't hit any asserts

Powered by Google App Engine
This is Rietveld 408576698