| Index: Source/core/svg/SVGEllipseElement.cpp
|
| diff --git a/Source/core/svg/SVGEllipseElement.cpp b/Source/core/svg/SVGEllipseElement.cpp
|
| index e30c4244cb336133a66a49106094545dc84172d5..6f2ba035aa56ca2a7e2fd1855049fcb4834a781f 100644
|
| --- a/Source/core/svg/SVGEllipseElement.cpp
|
| +++ b/Source/core/svg/SVGEllipseElement.cpp
|
| @@ -43,12 +43,11 @@ BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGEllipseElement)
|
| REGISTER_LOCAL_ANIMATED_PROPERTY(rx)
|
| REGISTER_LOCAL_ANIMATED_PROPERTY(ry)
|
| REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired)
|
| - REGISTER_PARENT_ANIMATED_PROPERTIES(SVGStyledTransformableElement)
|
| - REGISTER_PARENT_ANIMATED_PROPERTIES(SVGTests)
|
| + REGISTER_PARENT_ANIMATED_PROPERTIES(SVGGraphicsElement)
|
| END_REGISTER_ANIMATED_PROPERTIES
|
|
|
| inline SVGEllipseElement::SVGEllipseElement(const QualifiedName& tagName, Document* document)
|
| - : SVGStyledTransformableElement(tagName, document)
|
| + : SVGGraphicsElement(tagName, document)
|
| , m_cx(LengthModeWidth)
|
| , m_cy(LengthModeHeight)
|
| , m_rx(LengthModeWidth)
|
| @@ -84,7 +83,7 @@ void SVGEllipseElement::parseAttribute(const QualifiedName& name, const AtomicSt
|
| SVGParsingError parseError = NoError;
|
|
|
| if (!isSupportedAttribute(name))
|
| - SVGStyledTransformableElement::parseAttribute(name, value);
|
| + SVGGraphicsElement::parseAttribute(name, value);
|
| else if (name == SVGNames::cxAttr)
|
| setCxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError));
|
| else if (name == SVGNames::cyAttr)
|
| @@ -105,7 +104,7 @@ void SVGEllipseElement::parseAttribute(const QualifiedName& name, const AtomicSt
|
| void SVGEllipseElement::svgAttributeChanged(const QualifiedName& attrName)
|
| {
|
| if (!isSupportedAttribute(attrName)) {
|
| - SVGStyledTransformableElement::svgAttributeChanged(attrName);
|
| + SVGGraphicsElement::svgAttributeChanged(attrName);
|
| return;
|
| }
|
|
|
|
|