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