Index: Source/core/svg/SVGTextContentElement.cpp |
diff --git a/Source/core/svg/SVGTextContentElement.cpp b/Source/core/svg/SVGTextContentElement.cpp |
index 6c87c15b856d6586b96a3843bd26b6b667dca093..3f711c72a99bd33c90ce381636371fa07a44666f 100644 |
--- a/Source/core/svg/SVGTextContentElement.cpp |
+++ b/Source/core/svg/SVGTextContentElement.cpp |
@@ -53,12 +53,10 @@ const SVGPropertyInfo* SVGTextContentElement::textLengthPropertyInfo() |
// Animated property definitions |
DEFINE_ANIMATED_ENUMERATION(SVGTextContentElement, SVGNames::lengthAdjustAttr, LengthAdjust, lengthAdjust, SVGLengthAdjustType) |
-DEFINE_ANIMATED_BOOLEAN(SVGTextContentElement, SVGNames::externalResourcesRequiredAttr, ExternalResourcesRequired, externalResourcesRequired) |
BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGTextContentElement) |
REGISTER_LOCAL_ANIMATED_PROPERTY(textLength) |
REGISTER_LOCAL_ANIMATED_PROPERTY(lengthAdjust) |
- REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired) |
REGISTER_PARENT_ANIMATED_PROPERTIES(SVGGraphicsElement) |
END_REGISTER_ANIMATED_PROPERTIES |
@@ -214,7 +212,6 @@ bool SVGTextContentElement::isSupportedAttribute(const QualifiedName& attrName) |
DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
if (supportedAttributes.isEmpty()) { |
SVGLangSpace::addSupportedAttributes(supportedAttributes); |
- SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes); |
supportedAttributes.add(SVGNames::lengthAdjustAttr); |
supportedAttributes.add(SVGNames::textLengthAttr); |
} |
@@ -254,7 +251,6 @@ void SVGTextContentElement::parseAttribute(const QualifiedName& name, const Atom |
setLengthAdjustBaseValue(propertyValue); |
} else if (name == SVGNames::textLengthAttr) { |
m_textLength.value = SVGLength::construct(LengthModeOther, value, parseError, ForbidNegativeLengths); |
- } else if (SVGExternalResourcesRequired::parseAttribute(name, value)) { |
} else if (SVGLangSpace::parseAttribute(name, value)) { |
} else |
ASSERT_NOT_REACHED(); |