Index: Source/core/svg/SVGPolyElement.cpp |
diff --git a/Source/core/svg/SVGPolyElement.cpp b/Source/core/svg/SVGPolyElement.cpp |
index d3752f997cc6a668e480672e4d78bc3378b9855f..75b1b5c0df22de827813317c8d4357c81ac28373 100644 |
--- a/Source/core/svg/SVGPolyElement.cpp |
+++ b/Source/core/svg/SVGPolyElement.cpp |
@@ -67,7 +67,7 @@ BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGPolyElement) |
END_REGISTER_ANIMATED_PROPERTIES |
SVGPolyElement::SVGPolyElement(const QualifiedName& tagName, Document& document) |
- : SVGGraphicsElement(tagName, document) |
+ : SVGGeometryElement(tagName, document) |
{ |
registerAnimatedPropertiesForSVGPolyElement(); |
} |
@@ -86,7 +86,7 @@ bool SVGPolyElement::isSupportedAttribute(const QualifiedName& attrName) |
void SVGPolyElement::parseAttribute(const QualifiedName& name, const AtomicString& value) |
{ |
if (!isSupportedAttribute(name)) { |
- SVGGraphicsElement::parseAttribute(name, value); |
+ SVGGeometryElement::parseAttribute(name, value); |
return; |
} |
@@ -113,7 +113,7 @@ void SVGPolyElement::parseAttribute(const QualifiedName& name, const AtomicStrin |
void SVGPolyElement::svgAttributeChanged(const QualifiedName& attrName) |
{ |
if (!isSupportedAttribute(attrName)) { |
- SVGGraphicsElement::svgAttributeChanged(attrName); |
+ SVGGeometryElement::svgAttributeChanged(attrName); |
return; |
} |