Index: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
index af0cb90957a55164eff9dd9ce30619b53b2e819f..93ce3b2c387ba786646f53dc9124fd3bc85477ce 100644 |
--- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
+++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
@@ -2683,6 +2683,10 @@ PassRefPtrWillBeRawPtr<CSSValue> ComputedStyleCSSValueMapping::get(CSSPropertyID |
list->append(cssValuePool().createValue(style.scale()->z(), CSSPrimitiveValue::UnitType::Number)); |
return list.release(); |
} |
+ case CSSPropertyVariable: |
+ // TODO(leviw): We should have a way to retrive variables here. |
+ ASSERT_NOT_REACHED(); |
+ return nullptr; |
case CSSPropertyAll: |
return nullptr; |
default: |