| Index: Source/core/svg/SVGCircleElement.cpp
|
| diff --git a/Source/core/svg/SVGCircleElement.cpp b/Source/core/svg/SVGCircleElement.cpp
|
| index 8852d8c33af7b859e0e5d3f68b7ee307b8531316..97e64cfb7f77cc69d9e5c7632bd896b30690118e 100644
|
| --- a/Source/core/svg/SVGCircleElement.cpp
|
| +++ b/Source/core/svg/SVGCircleElement.cpp
|
| @@ -45,7 +45,7 @@ BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGCircleElement)
|
| END_REGISTER_ANIMATED_PROPERTIES
|
|
|
| inline SVGCircleElement::SVGCircleElement(const QualifiedName& tagName, Document& document)
|
| - : SVGGraphicsElement(tagName, document)
|
| + : SVGGeometryElement(tagName, document)
|
| , m_cx(LengthModeWidth)
|
| , m_cy(LengthModeHeight)
|
| , m_r(LengthModeOther)
|
| @@ -78,7 +78,7 @@ void SVGCircleElement::parseAttribute(const QualifiedName& name, const AtomicStr
|
| SVGParsingError parseError = NoError;
|
|
|
| if (!isSupportedAttribute(name))
|
| - SVGGraphicsElement::parseAttribute(name, value);
|
| + SVGGeometryElement::parseAttribute(name, value);
|
| else if (name == SVGNames::cxAttr)
|
| setCxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError));
|
| else if (name == SVGNames::cyAttr)
|
| @@ -96,7 +96,7 @@ void SVGCircleElement::parseAttribute(const QualifiedName& name, const AtomicStr
|
| void SVGCircleElement::svgAttributeChanged(const QualifiedName& attrName)
|
| {
|
| if (!isSupportedAttribute(attrName)) {
|
| - SVGGraphicsElement::svgAttributeChanged(attrName);
|
| + SVGGeometryElement::svgAttributeChanged(attrName);
|
| return;
|
| }
|
|
|
|
|