Chromium Code Reviews| 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 1e62ca9fcd732c047ec41330e5413b32b2ead2ca..4e0d1aee665f032a4893bfa54ddbabe34c182dd3 100644 |
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp |
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp |
| @@ -166,6 +166,8 @@ void LayoutSVGContainer::updateCachedBoundaries() |
| { |
| SVGLayoutSupport::computeContainerBoundingBoxes(this, m_objectBoundingBox, m_objectBoundingBoxValid, m_strokeBoundingBox, m_paintInvalidationBoundingBox); |
| SVGLayoutSupport::intersectPaintInvalidationRectWithResources(this, m_paintInvalidationBoundingBox); |
| + if (element()) |
| + element()->sizeMayHaveChanged(); |
|
esprehn
2016/08/10 04:27:09
I assume you have tests for all of these callers?
atotic1
2016/08/10 18:25:33
Yes, a whole new test file: svg.html
|
| } |
| bool LayoutSVGContainer::nodeAtFloatPoint(HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) |