| Index: Source/core/svg/SVGAElement.cpp
 | 
| diff --git a/Source/core/svg/SVGAElement.cpp b/Source/core/svg/SVGAElement.cpp
 | 
| index 4f3536c6e349c6326780fdf4f39491df831ddb18..3f0e9c26afaa6c39d99dad18a78e8dec3572ef6e 100644
 | 
| --- a/Source/core/svg/SVGAElement.cpp
 | 
| +++ b/Source/core/svg/SVGAElement.cpp
 | 
| @@ -57,12 +57,10 @@ using namespace HTMLNames;
 | 
|  // Animated property definitions
 | 
|  DEFINE_ANIMATED_STRING(SVGAElement, SVGNames::targetAttr, SVGTarget, svgTarget)
 | 
|  DEFINE_ANIMATED_STRING(SVGAElement, XLinkNames::hrefAttr, Href, href)
 | 
| -DEFINE_ANIMATED_BOOLEAN(SVGAElement, SVGNames::externalResourcesRequiredAttr, ExternalResourcesRequired, externalResourcesRequired)
 | 
|  
 | 
|  BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGAElement)
 | 
|      REGISTER_LOCAL_ANIMATED_PROPERTY(svgTarget)
 | 
|      REGISTER_LOCAL_ANIMATED_PROPERTY(href)
 | 
| -    REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired)
 | 
|      REGISTER_PARENT_ANIMATED_PROPERTIES(SVGGraphicsElement)
 | 
|  END_REGISTER_ANIMATED_PROPERTIES
 | 
|  
 | 
| @@ -94,7 +92,6 @@ bool SVGAElement::isSupportedAttribute(const QualifiedName& attrName)
 | 
|      DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
 | 
|      if (supportedAttributes.isEmpty()) {
 | 
|          SVGURIReference::addSupportedAttributes(supportedAttributes);
 | 
| -        SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes);
 | 
|          supportedAttributes.add(SVGNames::targetAttr);
 | 
|      }
 | 
|      return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
 | 
| @@ -114,8 +111,6 @@ void SVGAElement::parseAttribute(const QualifiedName& name, const AtomicString&
 | 
|  
 | 
|      if (SVGURIReference::parseAttribute(name, value))
 | 
|          return;
 | 
| -    if (SVGExternalResourcesRequired::parseAttribute(name, value))
 | 
| -        return;
 | 
|  
 | 
|      ASSERT_NOT_REACHED();
 | 
|  }
 | 
| 
 |