| Index: Source/core/svg/SVGMaskElement.cpp
|
| diff --git a/Source/core/svg/SVGMaskElement.cpp b/Source/core/svg/SVGMaskElement.cpp
|
| index 076404e3e3161ccee6d70bf413024e0845986593..90fbdb62f2b8eb8343730726a3e41ff6c5847bc0 100644
|
| --- a/Source/core/svg/SVGMaskElement.cpp
|
| +++ b/Source/core/svg/SVGMaskElement.cpp
|
| @@ -137,7 +137,7 @@ void SVGMaskElement::svgAttributeChanged(const QualifiedName& attrName)
|
| || attrName == SVGNames::heightAttr)
|
| updateRelativeLengthsInformation();
|
|
|
| - LayoutSVGResourceContainer* renderer = toLayoutSVGResourceContainer(this->renderer());
|
| + LayoutSVGResourceContainer* renderer = toLayoutSVGResourceContainer(this->layoutObject());
|
| if (renderer)
|
| renderer->invalidateCacheAndMarkForLayout();
|
| }
|
| @@ -149,7 +149,7 @@ void SVGMaskElement::childrenChanged(const ChildrenChange& change)
|
| if (change.byParser)
|
| return;
|
|
|
| - if (LayoutObject* object = renderer())
|
| + if (LayoutObject* object = layoutObject())
|
| object->setNeedsLayoutAndFullPaintInvalidation();
|
| }
|
|
|
|
|