Index: Source/core/svg/SVGGraphicsElement.cpp |
diff --git a/Source/core/svg/SVGGraphicsElement.cpp b/Source/core/svg/SVGGraphicsElement.cpp |
index 1e56fd3528f46edafe5565535c468a67ae43148e..958d44431f8758923a600dacefb25ba338a0c9a9 100644 |
--- a/Source/core/svg/SVGGraphicsElement.cpp |
+++ b/Source/core/svg/SVGGraphicsElement.cpp |
@@ -36,12 +36,12 @@ DEFINE_ANIMATED_TRANSFORM_LIST(SVGGraphicsElement, SVGNames::transformAttr, Tran |
BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGGraphicsElement) |
REGISTER_LOCAL_ANIMATED_PROPERTY(transform) |
- REGISTER_PARENT_ANIMATED_PROPERTIES(SVGStyledElement) |
+ REGISTER_PARENT_ANIMATED_PROPERTIES(SVGElement) |
REGISTER_PARENT_ANIMATED_PROPERTIES(SVGTests) |
END_REGISTER_ANIMATED_PROPERTIES |
SVGGraphicsElement::SVGGraphicsElement(const QualifiedName& tagName, Document* document, ConstructionType constructionType) |
- : SVGStyledElement(tagName, document, constructionType) |
+ : SVGElement(tagName, document, constructionType) |
{ |
registerAnimatedPropertiesForSVGGraphicsElement(); |
} |
@@ -103,7 +103,7 @@ bool SVGGraphicsElement::isSupportedAttribute(const QualifiedName& attrName) |
void SVGGraphicsElement::parseAttribute(const QualifiedName& name, const AtomicString& value) |
{ |
if (!isSupportedAttribute(name)) { |
- SVGStyledElement::parseAttribute(name, value); |
+ SVGElement::parseAttribute(name, value); |
return; |
} |
@@ -123,7 +123,7 @@ void SVGGraphicsElement::parseAttribute(const QualifiedName& name, const AtomicS |
void SVGGraphicsElement::svgAttributeChanged(const QualifiedName& attrName) |
{ |
if (!isSupportedAttribute(attrName)) { |
- SVGStyledElement::svgAttributeChanged(attrName); |
+ SVGElement::svgAttributeChanged(attrName); |
return; |
} |