| Index: Source/core/svg/SVGClipPathElement.cpp
|
| diff --git a/Source/core/svg/SVGClipPathElement.cpp b/Source/core/svg/SVGClipPathElement.cpp
|
| index 94b926b0fd99adcaf93b9361597d42b95b980b3d..b72638f68b3662a8e3d30280c53ac1dd02da2726 100644
|
| --- a/Source/core/svg/SVGClipPathElement.cpp
|
| +++ b/Source/core/svg/SVGClipPathElement.cpp
|
| @@ -56,7 +56,7 @@ void SVGClipPathElement::svgAttributeChanged(const QualifiedName& attrName)
|
|
|
| SVGElement::InvalidationGuard invalidationGuard(this);
|
|
|
| - LayoutSVGResourceContainer* renderer = toLayoutSVGResourceContainer(this->renderer());
|
| + LayoutSVGResourceContainer* renderer = toLayoutSVGResourceContainer(this->layoutObject());
|
| if (renderer)
|
| renderer->invalidateCacheAndMarkForLayout();
|
| }
|
| @@ -68,7 +68,7 @@ void SVGClipPathElement::childrenChanged(const ChildrenChange& change)
|
| if (change.byParser)
|
| return;
|
|
|
| - if (LayoutObject* object = renderer())
|
| + if (LayoutObject* object = layoutObject())
|
| object->setNeedsLayoutAndFullPaintInvalidation();
|
| }
|
|
|
|
|