summaryrefslogtreecommitdiff
path: root/Source/WebCore/svg/SVGTRefElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/svg/SVGTRefElement.cpp')
-rw-r--r--Source/WebCore/svg/SVGTRefElement.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/svg/SVGTRefElement.cpp b/Source/WebCore/svg/SVGTRefElement.cpp
index 81397b1b5..300b8c9fb 100644
--- a/Source/WebCore/svg/SVGTRefElement.cpp
+++ b/Source/WebCore/svg/SVGTRefElement.cpp
@@ -166,14 +166,14 @@ bool SVGTRefElement::isSupportedAttribute(const QualifiedName& attrName)
return supportedAttributes.contains<QualifiedName, SVGAttributeHashTranslator>(attrName);
}
-void SVGTRefElement::parseMappedAttribute(Attribute* attr)
+void SVGTRefElement::parseAttribute(Attribute* attr)
{
if (!isSupportedAttribute(attr->name())) {
- SVGTextPositioningElement::parseMappedAttribute(attr);
+ SVGTextPositioningElement::parseAttribute(attr);
return;
}
- if (SVGURIReference::parseMappedAttribute(attr)) {
+ if (SVGURIReference::parseAttribute(attr)) {
return;
}