Index: Source/core/svg/SVGClipPathElement.cpp |
diff --git a/Source/core/svg/SVGClipPathElement.cpp b/Source/core/svg/SVGClipPathElement.cpp |
index 35f255ca93101beed7382c64b45f9711ff735000..5c3cd6aad7bdcd54466fd213e9f7747339cecc98 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(); |
} |