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 c0377df923235f63f5ab729e2474e687f4d5e76d..f0fb3cf80a337606b58d189a656e63a7acaf3002 100644 |
--- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
+++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
@@ -2643,7 +2643,7 @@ const CSSValue* ComputedStyleCSSValueMapping::get(CSSPropertyID propertyID, cons |
return CSSPrimitiveValue::create(style.shapeImageThreshold(), CSSPrimitiveValue::UnitType::Number); |
case CSSPropertyShapeOutside: |
return valueForShape(style, style.shapeOutside()); |
- case CSSPropertyWebkitFilter: |
+ case CSSPropertyFilter: |
return valueForFilter(style, style.filter()); |
case CSSPropertyBackdropFilter: |
return valueForFilter(style, style.backdropFilter()); |
@@ -2834,10 +2834,6 @@ const CSSValue* ComputedStyleCSSValueMapping::get(CSSPropertyID propertyID, cons |
if (!svgStyle.maskerResource().isEmpty()) |
return CSSURIValue::create(serializeAsFragmentIdentifier(svgStyle.maskerResource())); |
return CSSPrimitiveValue::createIdentifier(CSSValueNone); |
- case CSSPropertyFilter: |
- if (!svgStyle.filterResource().isEmpty()) |
- return CSSURIValue::create(serializeAsFragmentIdentifier(svgStyle.filterResource())); |
- return CSSPrimitiveValue::createIdentifier(CSSValueNone); |
case CSSPropertyFloodColor: |
return currentColorOrValidColor(style, svgStyle.floodColor()); |
case CSSPropertyLightingColor: |