| Index: Source/core/svg/SVGPathElement.cpp
|
| diff --git a/Source/core/svg/SVGPathElement.cpp b/Source/core/svg/SVGPathElement.cpp
|
| index 23c1efcfe99dc4fe6e76e30954d5307c8f6eff8b..a9e4cced3dcbd35b74ce80bef49787711ce868f6 100644
|
| --- a/Source/core/svg/SVGPathElement.cpp
|
| +++ b/Source/core/svg/SVGPathElement.cpp
|
| @@ -67,12 +67,10 @@ const SVGPropertyInfo* SVGPathElement::dPropertyInfo()
|
|
|
| // Animated property definitions
|
| DEFINE_ANIMATED_NUMBER(SVGPathElement, SVGNames::pathLengthAttr, PathLength, pathLength)
|
| -DEFINE_ANIMATED_BOOLEAN(SVGPathElement, SVGNames::externalResourcesRequiredAttr, ExternalResourcesRequired, externalResourcesRequired)
|
|
|
| BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGPathElement)
|
| REGISTER_LOCAL_ANIMATED_PROPERTY(d)
|
| REGISTER_LOCAL_ANIMATED_PROPERTY(pathLength)
|
| - REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired)
|
| REGISTER_PARENT_ANIMATED_PROPERTIES(SVGGraphicsElement)
|
| END_REGISTER_ANIMATED_PROPERTIES
|
|
|
| @@ -211,7 +209,6 @@ bool SVGPathElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
| if (supportedAttributes.isEmpty()) {
|
| - SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes);
|
| supportedAttributes.add(SVGNames::dAttr);
|
| supportedAttributes.add(SVGNames::pathLengthAttr);
|
| }
|
| @@ -238,9 +235,6 @@ void SVGPathElement::parseAttribute(const QualifiedName& name, const AtomicStrin
|
| return;
|
| }
|
|
|
| - if (SVGExternalResourcesRequired::parseAttribute(name, value))
|
| - return;
|
| -
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|
|
|