| Index: Source/core/svg/SVGStopElement.cpp
|
| diff --git a/Source/core/svg/SVGStopElement.cpp b/Source/core/svg/SVGStopElement.cpp
|
| index cceefe65f02d279a8949fb051fa230e1dd04f279..23883c1b164cabfd21dd8a1fa54e6c965d7ac976 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;
|
| }
|
|
|
|
|