| Index: Source/core/svg/SVGGraphicsElement.cpp
 | 
| diff --git a/Source/core/svg/SVGGraphicsElement.cpp b/Source/core/svg/SVGGraphicsElement.cpp
 | 
| index 0b6ff05a3c8608f9ba828e5d6e9e9ef465b11d61..42180a9505734cb3d254bf92cc84a1c6313e2782 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;
 | 
|      }
 | 
|  
 | 
| 
 |