| Index: third_party/WebKit/Source/core/css/CSSVariableData.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSVariableData.cpp b/third_party/WebKit/Source/core/css/CSSVariableData.cpp
|
| index 7dfc352c77f165b761072020d85699fc48944681..577a182c91bf89fab4b080ac9e2b0ab90853330f 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSVariableData.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSVariableData.cpp
|
| @@ -14,7 +14,7 @@ StylePropertySet* CSSVariableData::propertySet()
|
| {
|
| ASSERT(!m_needsVariableResolution);
|
| if (!m_cachedPropertySet) {
|
| - m_propertySet = CSSParser::parseCustomPropertySet(m_tokens);
|
| + m_propertySet = CSSParser::parseCustomPropertySet(CSSParserTokenRange(m_tokens.begin(), m_tokens.end()));
|
| m_cachedPropertySet = true;
|
| }
|
| return m_propertySet.get();
|
|
|