| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp
|
| index 39df487373060856c8529d4a4c7c4c136ff8d204..30f9114be05994a3934637fe4eed78466cc86d68 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp
|
| @@ -168,15 +168,13 @@ void LayoutSVGContainer::addOutlineRects(
|
| Vector<LayoutRect>& rects,
|
| const LayoutPoint&,
|
| IncludeBlockVisualOverflowOrNot) const {
|
| - rects.append(LayoutRect(paintInvalidationRectInLocalSVGCoordinates()));
|
| + rects.append(LayoutRect(visualRectInLocalSVGCoordinates()));
|
| }
|
|
|
| void LayoutSVGContainer::updateCachedBoundaries() {
|
| SVGLayoutSupport::computeContainerBoundingBoxes(
|
| this, m_objectBoundingBox, m_objectBoundingBoxValid, m_strokeBoundingBox,
|
| - m_paintInvalidationBoundingBox);
|
| - SVGLayoutSupport::intersectPaintInvalidationRectWithResources(
|
| - this, m_paintInvalidationBoundingBox);
|
| + m_localVisualRect);
|
| if (element())
|
| element()->setNeedsResizeObserverUpdate();
|
| }
|
|
|