| Index: Source/core/svg/SVGStopElement.cpp
|
| diff --git a/Source/core/svg/SVGStopElement.cpp b/Source/core/svg/SVGStopElement.cpp
|
| index 397ea20db096787f299b5f8efc2a470eeb6c53de..420618ec411d61af783dcf9d8492704962c4124e 100644
|
| --- a/Source/core/svg/SVGStopElement.cpp
|
| +++ b/Source/core/svg/SVGStopElement.cpp
|
| @@ -34,11 +34,11 @@ DEFINE_ANIMATED_NUMBER(SVGStopElement, SVGNames::offsetAttr, Offset, offset)
|
|
|
| BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGStopElement)
|
| REGISTER_LOCAL_ANIMATED_PROPERTY(offset)
|
| - REGISTER_PARENT_ANIMATED_PROPERTIES(SVGStyledElement)
|
| + REGISTER_PARENT_ANIMATED_PROPERTIES(SVGElement)
|
| END_REGISTER_ANIMATED_PROPERTIES
|
|
|
| inline SVGStopElement::SVGStopElement(const QualifiedName& tagName, Document* document)
|
| - : SVGStyledElement(tagName, document)
|
| + : SVGElement(tagName, document)
|
| , m_offset(0)
|
| {
|
| ASSERT(hasTagName(SVGNames::stopTag));
|
| @@ -62,7 +62,7 @@ bool SVGStopElement::isSupportedAttribute(const QualifiedName& attrName)
|
| void SVGStopElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
|
| {
|
| if (!isSupportedAttribute(name)) {
|
| - SVGStyledElement::parseAttribute(name, value);
|
| + SVGElement::parseAttribute(name, value);
|
| return;
|
| }
|
|
|
| @@ -80,7 +80,7 @@ void SVGStopElement::parseAttribute(const QualifiedName& name, const AtomicStrin
|
| void SVGStopElement::svgAttributeChanged(const QualifiedName& attrName)
|
| {
|
| if (!isSupportedAttribute(attrName)) {
|
| - SVGStyledElement::svgAttributeChanged(attrName);
|
| + SVGElement::svgAttributeChanged(attrName);
|
| return;
|
| }
|
|
|
|
|