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 23d3b172a14fb8cf40de6a0d323e4f1704f79f85..ecbb928c555ecdb76cbd89b3e472ee2c5bd100c1 100644 |
--- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
+++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
@@ -2650,7 +2650,7 @@ const CSSValue* ComputedStyleCSSValueMapping::get(CSSPropertyID propertyID, cons |
return valueForCounterDirectives(style, propertyID); |
case CSSPropertyCounterReset: |
return valueForCounterDirectives(style, propertyID); |
- case CSSPropertyWebkitClipPath: |
+ case CSSPropertyClipPath: |
if (ClipPathOperation* operation = style.clipPath()) { |
if (operation->type() == ClipPathOperation::SHAPE) |
return valueForBasicShape(style, toShapeClipPathOperation(operation)->basicShape()); |
@@ -2847,10 +2847,6 @@ const CSSValue* ComputedStyleCSSValueMapping::get(CSSPropertyID propertyID, cons |
return CSSPrimitiveValue::create(svgStyle.dominantBaseline()); |
case CSSPropertyTextAnchor: |
return CSSPrimitiveValue::create(svgStyle.textAnchor()); |
- case CSSPropertyClipPath: |
- if (!svgStyle.clipperResource().isEmpty()) |
- return CSSURIValue::create(serializeAsFragmentIdentifier(svgStyle.clipperResource())); |
- return CSSPrimitiveValue::createIdentifier(CSSValueNone); |
case CSSPropertyMask: |
if (!svgStyle.maskerResource().isEmpty()) |
return CSSURIValue::create(serializeAsFragmentIdentifier(svgStyle.maskerResource())); |