| Index: Source/core/svg/SVGGElement.cpp
|
| diff --git a/Source/core/svg/SVGGElement.cpp b/Source/core/svg/SVGGElement.cpp
|
| index bffc4f241d877df5173b8fe2f178f00b8d0a276e..88beb1b64683bf0c49615e1daccf4cce65b69337 100644
|
| --- a/Source/core/svg/SVGGElement.cpp
|
| +++ b/Source/core/svg/SVGGElement.cpp
|
| @@ -31,10 +31,8 @@
|
| namespace WebCore {
|
|
|
| // Animated property definitions
|
| -DEFINE_ANIMATED_BOOLEAN(SVGGElement, SVGNames::externalResourcesRequiredAttr, ExternalResourcesRequired, externalResourcesRequired)
|
|
|
| BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGGElement)
|
| - REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired)
|
| REGISTER_PARENT_ANIMATED_PROPERTIES(SVGGraphicsElement)
|
| END_REGISTER_ANIMATED_PROPERTIES
|
|
|
| @@ -53,8 +51,6 @@ PassRefPtr<SVGGElement> SVGGElement::create(Document& document)
|
| bool SVGGElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
| - if (supportedAttributes.isEmpty())
|
| - SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes);
|
| return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
|
| }
|
|
|
| @@ -63,8 +59,6 @@ void SVGGElement::parseAttribute(const QualifiedName& name, const AtomicString&
|
| if (!isSupportedAttribute(name)) {
|
| SVGGraphicsElement::parseAttribute(name, value);
|
| return;
|
| - } else if (SVGExternalResourcesRequired::parseAttribute(name, value)) {
|
| - return;
|
| }
|
|
|
| ASSERT_NOT_REACHED();
|
|
|