summaryrefslogtreecommitdiff
path: root/Source/WebCore/svg/SVGPathElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/svg/SVGPathElement.cpp')
-rw-r--r--Source/WebCore/svg/SVGPathElement.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/WebCore/svg/SVGPathElement.cpp b/Source/WebCore/svg/SVGPathElement.cpp
index 62b904a4d..ccf803614 100644
--- a/Source/WebCore/svg/SVGPathElement.cpp
+++ b/Source/WebCore/svg/SVGPathElement.cpp
@@ -216,10 +216,10 @@ bool SVGPathElement::isSupportedAttribute(const QualifiedName& attrName)
return supportedAttributes.contains<QualifiedName, SVGAttributeHashTranslator>(attrName);
}
-void SVGPathElement::parseMappedAttribute(Attribute* attr)
+void SVGPathElement::parseAttribute(Attribute* attr)
{
if (!isSupportedAttribute(attr->name())) {
- SVGStyledTransformableElement::parseMappedAttribute(attr);
+ SVGStyledTransformableElement::parseAttribute(attr);
return;
}
@@ -237,11 +237,11 @@ void SVGPathElement::parseMappedAttribute(Attribute* attr)
return;
}
- if (SVGTests::parseMappedAttribute(attr))
+ if (SVGTests::parseAttribute(attr))
return;
- if (SVGLangSpace::parseMappedAttribute(attr))
+ if (SVGLangSpace::parseAttribute(attr))
return;
- if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
+ if (SVGExternalResourcesRequired::parseAttribute(attr))
return;
ASSERT_NOT_REACHED();