Index: third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp |
index 1953ae18088b256079c080a4584fa802ba8f4a46..a64fc0b00795a29e9a4772f7894f0ca49eaf3ade 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp |
@@ -142,8 +142,9 @@ CSSCustomPropertyDeclaration* CSSVariableParser::parseDeclarationValue( |
return nullptr; |
if (type == CSSValueInternalVariableValue) { |
return CSSCustomPropertyDeclaration::create( |
- variableName, CSSVariableData::create(range, isAnimationTainted, |
- hasReferences || hasAtApplyRule)); |
+ variableName, |
+ CSSVariableData::create(range, isAnimationTainted, |
+ hasReferences || hasAtApplyRule)); |
} |
return CSSCustomPropertyDeclaration::create(variableName, type); |
} |