Index: Source/core/svg/SVGPolyElement.cpp |
diff --git a/Source/core/svg/SVGPolyElement.cpp b/Source/core/svg/SVGPolyElement.cpp |
index 9e9990e4ed72e6dac3d9da4f7989569971735a4c..65a663a929a3dd65bfbc42bfa380091878d624a6 100644 |
--- a/Source/core/svg/SVGPolyElement.cpp |
+++ b/Source/core/svg/SVGPolyElement.cpp |
@@ -57,11 +57,9 @@ SVGPointList& SVGPolyElement::pointsCurrentValue() |
} |
// Animated property definitions |
-DEFINE_ANIMATED_BOOLEAN(SVGPolyElement, SVGNames::externalResourcesRequiredAttr, ExternalResourcesRequired, externalResourcesRequired) |
BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGPolyElement) |
REGISTER_LOCAL_ANIMATED_PROPERTY(points) |
- REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired) |
REGISTER_PARENT_ANIMATED_PROPERTIES(SVGGraphicsElement) |
END_REGISTER_ANIMATED_PROPERTIES |
@@ -75,7 +73,6 @@ bool SVGPolyElement::isSupportedAttribute(const QualifiedName& attrName) |
{ |
DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
if (supportedAttributes.isEmpty()) { |
- SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes); |
supportedAttributes.add(SVGNames::pointsAttr); |
} |
return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); |
@@ -100,9 +97,6 @@ void SVGPolyElement::parseAttribute(const QualifiedName& name, const AtomicStrin |
return; |
} |
- if (SVGExternalResourcesRequired::parseAttribute(name, value)) |
- return; |
- |
ASSERT_NOT_REACHED(); |
} |
@@ -125,11 +119,6 @@ void SVGPolyElement::svgAttributeChanged(const QualifiedName& attrName) |
return; |
} |
- if (SVGExternalResourcesRequired::isKnownAttribute(attrName)) { |
- RenderSVGResource::markForLayoutAndParentResourceInvalidation(renderer); |
- return; |
- } |
- |
ASSERT_NOT_REACHED(); |
} |