Index: Source/core/svg/SVGClipPathElement.cpp |
diff --git a/Source/core/svg/SVGClipPathElement.cpp b/Source/core/svg/SVGClipPathElement.cpp |
index 86cd2633bf3bbfe9c0cd4834f370fbc636bce980..23b997160546d9782e5df654db386622cb8a31c6 100644 |
--- a/Source/core/svg/SVGClipPathElement.cpp |
+++ b/Source/core/svg/SVGClipPathElement.cpp |
@@ -57,7 +57,6 @@ bool SVGClipPathElement::isSupportedAttribute(const QualifiedName& attrName) |
{ |
DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
if (supportedAttributes.isEmpty()) { |
- SVGTests::addSupportedAttributes(supportedAttributes); |
SVGLangSpace::addSupportedAttributes(supportedAttributes); |
SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes); |
supportedAttributes.add(SVGNames::clipPathUnitsAttr); |
@@ -79,8 +78,6 @@ void SVGClipPathElement::parseAttribute(const QualifiedName& name, const AtomicS |
return; |
} |
- if (SVGTests::parseAttribute(name, value)) |
- return; |
if (SVGLangSpace::parseAttribute(name, value)) |
return; |
if (SVGExternalResourcesRequired::parseAttribute(name, value)) |