| Index: Source/core/svg/SVGTRefElement.cpp
|
| diff --git a/Source/core/svg/SVGTRefElement.cpp b/Source/core/svg/SVGTRefElement.cpp
|
| index 4e69339e7a9997e6c73b0d0ff8c81b064141eef7..2d5f64fd081038d1e9613e878bb82cb27035507e 100644
|
| --- a/Source/core/svg/SVGTRefElement.cpp
|
| +++ b/Source/core/svg/SVGTRefElement.cpp
|
| @@ -270,7 +270,7 @@ void SVGTRefElement::buildPendingResource()
|
|
|
| Node::InsertionNotificationRequest SVGTRefElement::insertedInto(ContainerNode* rootParent)
|
| {
|
| - SVGStyledElement::insertedInto(rootParent);
|
| + SVGElement::insertedInto(rootParent);
|
| if (rootParent->inDocument())
|
| buildPendingResource();
|
| return InsertionDone;
|
| @@ -278,7 +278,7 @@ Node::InsertionNotificationRequest SVGTRefElement::insertedInto(ContainerNode* r
|
|
|
| void SVGTRefElement::removedFrom(ContainerNode* rootParent)
|
| {
|
| - SVGStyledElement::removedFrom(rootParent);
|
| + SVGElement::removedFrom(rootParent);
|
| if (rootParent->inDocument())
|
| m_targetListener->detach();
|
| }
|
|
|