| Index: Source/core/svg/SVGGraphicsElement.cpp
|
| diff --git a/Source/core/svg/SVGGraphicsElement.cpp b/Source/core/svg/SVGGraphicsElement.cpp
|
| index ab14dc6f618aa25a5ca67206837f5da69367795a..9838822837530c3895f45e71e6ff4aef52e4bc67 100644
|
| --- a/Source/core/svg/SVGGraphicsElement.cpp
|
| +++ b/Source/core/svg/SVGGraphicsElement.cpp
|
| @@ -41,7 +41,7 @@ BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGGraphicsElement)
|
| END_REGISTER_ANIMATED_PROPERTIES
|
|
|
| SVGGraphicsElement::SVGGraphicsElement(const QualifiedName& tagName, Document* document, ConstructionType constructionType)
|
| - : SVGStyledLocatableElement(tagName, document, constructionType)
|
| + : SVGStyledElement(tagName, document, constructionType)
|
| {
|
| registerAnimatedPropertiesForSVGGraphicsElement();
|
| }
|
| @@ -101,7 +101,7 @@ bool SVGGraphicsElement::isSupportedAttribute(const QualifiedName& attrName)
|
| void SVGGraphicsElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
|
| {
|
| if (!isSupportedAttribute(name)) {
|
| - SVGStyledLocatableElement::parseAttribute(name, value);
|
| + SVGStyledElement::parseAttribute(name, value);
|
| return;
|
| }
|
|
|
| @@ -119,7 +119,7 @@ void SVGGraphicsElement::parseAttribute(const QualifiedName& name, const AtomicS
|
| void SVGGraphicsElement::svgAttributeChanged(const QualifiedName& attrName)
|
| {
|
| if (!isSupportedAttribute(attrName)) {
|
| - SVGStyledLocatableElement::svgAttributeChanged(attrName);
|
| + SVGStyledElement::svgAttributeChanged(attrName);
|
| return;
|
| }
|
|
|
|
|