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

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

Issue 1192983003: CSS Custom Properties (Variables) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: with missing files Created 5 years, 6 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/CSSParserTokenRange.cpp
diff --git a/Source/core/css/parser/CSSParserTokenRange.cpp b/Source/core/css/parser/CSSParserTokenRange.cpp
index 26747a9ccb37a8b498e3adb36fb1ab29e3d16035..6836097ffeaa47a0d9a4b001cdb1ee3b6a416599 100644
--- a/Source/core/css/parser/CSSParserTokenRange.cpp
+++ b/Source/core/css/parser/CSSParserTokenRange.cpp
@@ -24,7 +24,7 @@ CSSParserTokenRange CSSParserTokenRange::makeSubRange(const CSSParserToken* firs
if (last == &staticEOFToken)
last = m_last;
ASSERT(first <= last);
- return CSSParserTokenRange(first, last);
+ return CSSParserTokenRange(first, last, m_scope);
}
CSSParserTokenRange CSSParserTokenRange::consumeBlock()

Powered by Google App Engine
This is Rietveld 408576698