| Index: Source/core/svg/SVGTRefElement.cpp
|
| diff --git a/Source/core/svg/SVGTRefElement.cpp b/Source/core/svg/SVGTRefElement.cpp
|
| index a151ea7525b8eaed5b0de66711e21fef02b369f7..8dfa40f2ba07603a21b828641db023e9246965e4 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();
|
| }
|
|
|