Index: third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp |
diff --git a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp |
index da497fdda56c1c08a7122a6283a7926e3abd0a7b..306d72ca77431226d0553fd78c10b08dcbafd065 100644 |
--- a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp |
+++ b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp |
@@ -534,6 +534,11 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValu |
return ComputedStyleCSSValueMapping::get(customPropertyName, *computeComputedStyle()); |
} |
+const HashMap<AtomicString, RefPtr<CSSVariableData>>* CSSComputedStyleDeclaration::getVariables() const |
+{ |
+ return ComputedStyleCSSValueMapping::getVariables(*computeComputedStyle()); |
+} |
+ |
PassRefPtrWillBeRawPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropertyID propertyID) const |
{ |
Node* styledNode = this->styledNode(); |