Index: Source/core/svg/SVGAElement.cpp |
diff --git a/Source/core/svg/SVGAElement.cpp b/Source/core/svg/SVGAElement.cpp |
index 5eca43772ab6ac11dd57bd84117d11b0c7ca56cb..0f360ee2dec248b3fb3ea0170b57c45dad5deb7f 100644 |
--- a/Source/core/svg/SVGAElement.cpp |
+++ b/Source/core/svg/SVGAElement.cpp |
@@ -94,7 +94,6 @@ bool SVGAElement::isSupportedAttribute(const QualifiedName& attrName) |
DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
if (supportedAttributes.isEmpty()) { |
SVGURIReference::addSupportedAttributes(supportedAttributes); |
- SVGTests::addSupportedAttributes(supportedAttributes); |
SVGLangSpace::addSupportedAttributes(supportedAttributes); |
SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes); |
supportedAttributes.add(SVGNames::targetAttr); |
@@ -116,8 +115,6 @@ void SVGAElement::parseAttribute(const QualifiedName& name, const AtomicString& |
if (SVGURIReference::parseAttribute(name, value)) |
return; |
- if (SVGTests::parseAttribute(name, value)) |
- return; |
if (SVGLangSpace::parseAttribute(name, value)) |
return; |
if (SVGExternalResourcesRequired::parseAttribute(name, value)) |