| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGInline.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInline.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInline.cpp
|
| index 91925f5a1730bcf64db77e00301dbc0670eedeeb..560042ae44293360a1193240691dca6c0eaaafa4 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInline.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInline.cpp
|
| @@ -131,7 +131,7 @@ void LayoutSVGInline::addChild(LayoutObject* child, LayoutObject* beforeChild)
|
| SVGResourcesCache::clientWasAddedToTree(child, child->styleRef());
|
|
|
| if (LayoutSVGText* textLayoutObject = LayoutSVGText::locateLayoutSVGTextAncestor(this))
|
| - textLayoutObject->subtreeChildWasAdded(child);
|
| + textLayoutObject->subtreeChildWasAdded();
|
| }
|
|
|
| void LayoutSVGInline::removeChild(LayoutObject* child)
|
| @@ -139,7 +139,7 @@ void LayoutSVGInline::removeChild(LayoutObject* child)
|
| SVGResourcesCache::clientWillBeRemovedFromTree(child);
|
|
|
| if (LayoutSVGText* textLayoutObject = LayoutSVGText::locateLayoutSVGTextAncestor(this))
|
| - textLayoutObject->subtreeChildWillBeRemoved(child);
|
| + textLayoutObject->subtreeChildWillBeRemoved();
|
| LayoutInline::removeChild(child);
|
| }
|
|
|
|
|