diff options
Diffstat (limited to 'Source/WebCore/svg/SVGFEDropShadowElement.cpp')
-rw-r--r-- | Source/WebCore/svg/SVGFEDropShadowElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/svg/SVGFEDropShadowElement.cpp b/Source/WebCore/svg/SVGFEDropShadowElement.cpp index d2259dd8f..de2d10931 100644 --- a/Source/WebCore/svg/SVGFEDropShadowElement.cpp +++ b/Source/WebCore/svg/SVGFEDropShadowElement.cpp @@ -95,10 +95,10 @@ bool SVGFEDropShadowElement::isSupportedAttribute(const QualifiedName& attrName) return supportedAttributes.contains<QualifiedName, SVGAttributeHashTranslator>(attrName); } -void SVGFEDropShadowElement::parseMappedAttribute(Attribute* attr) +void SVGFEDropShadowElement::parseAttribute(Attribute* attr) { if (!isSupportedAttribute(attr->name())) { - SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr); + SVGFilterPrimitiveStandardAttributes::parseAttribute(attr); return; } |