Index: Source/core/svg/SVGGElement.cpp |
diff --git a/Source/core/svg/SVGGElement.cpp b/Source/core/svg/SVGGElement.cpp |
index 8693bc383e16e7d66e022a6315ac98bb727f8d69..4eb8f3063c9fef8c66258838ede50c59a6b127a4 100644 |
--- a/Source/core/svg/SVGGElement.cpp |
+++ b/Source/core/svg/SVGGElement.cpp |
@@ -54,10 +54,8 @@ PassRefPtr<SVGGElement> SVGGElement::create(const QualifiedName& tagName, Docume |
bool SVGGElement::isSupportedAttribute(const QualifiedName& attrName) |
{ |
DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
- if (supportedAttributes.isEmpty()) { |
- SVGLangSpace::addSupportedAttributes(supportedAttributes); |
+ if (supportedAttributes.isEmpty()) |
SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes); |
- } |
return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); |
} |
@@ -70,8 +68,6 @@ void SVGGElement::parseAttribute(const QualifiedName& name, const AtomicString& |
if (SVGLangSpace::parseAttribute(name, value)) |
return; |
- if (SVGExternalResourcesRequired::parseAttribute(name, value)) |
- return; |
ASSERT_NOT_REACHED(); |
} |