| Index: Source/core/svg/SVGTextPathElement.cpp
|
| diff --git a/Source/core/svg/SVGTextPathElement.cpp b/Source/core/svg/SVGTextPathElement.cpp
|
| index f2decf8ee0965d94bc40c3da34ea8723e0006a34..fa5b97ac5a2d10a9f4d499d4122b076f744472c8 100644
|
| --- a/Source/core/svg/SVGTextPathElement.cpp
|
| +++ b/Source/core/svg/SVGTextPathElement.cpp
|
| @@ -86,25 +86,6 @@ bool SVGTextPathElement::isSupportedAttribute(const QualifiedName& attrName)
|
| return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
|
| }
|
|
|
| -void SVGTextPathElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
|
| -{
|
| - SVGParsingError parseError = NoError;
|
| -
|
| - if (!isSupportedAttribute(name))
|
| - SVGTextContentElement::parseAttribute(name, value);
|
| - else if (name == SVGNames::startOffsetAttr)
|
| - m_startOffset->setBaseValueAsString(value, parseError);
|
| - else if (name == SVGNames::methodAttr)
|
| - m_method->setBaseValueAsString(value, parseError);
|
| - else if (name == SVGNames::spacingAttr)
|
| - m_spacing->setBaseValueAsString(value, parseError);
|
| - else if (SVGURIReference::parseAttribute(name, value, parseError)) {
|
| - } else
|
| - ASSERT_NOT_REACHED();
|
| -
|
| - reportAttributeParsingError(parseError, name, value);
|
| -}
|
| -
|
| void SVGTextPathElement::svgAttributeChanged(const QualifiedName& attrName)
|
| {
|
| if (!isSupportedAttribute(attrName)) {
|
|
|