| Index: Source/core/svg/SVGMaskElement.cpp
|
| diff --git a/Source/core/svg/SVGMaskElement.cpp b/Source/core/svg/SVGMaskElement.cpp
|
| index 95914cc35f6e2db552e588e20bf3ea5774359ddd..fbf18fa40003482ac63e5907cc5cad548a5a4448 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();
|
| }
|
|
|
|
|