| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGRoot.h
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGRoot.h b/third_party/WebKit/Source/core/layout/svg/LayoutSVGRoot.h
|
| index d20594fc39b6eb3b080c076291b002dab28168a1..d9bc63b64e6539c00a19d073861eb13d8c1bc746 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGRoot.h
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGRoot.h
|
| @@ -81,7 +81,11 @@ class CORE_EXPORT LayoutSVGRoot final : public LayoutReplaced {
|
| const AffineTransform& localToBorderBoxTransform() const {
|
| return m_localToBorderBoxTransform;
|
| }
|
| +
|
| bool shouldApplyViewportClip() const;
|
| + bool shouldClipOverflow() const override {
|
| + return LayoutBox::shouldClipOverflow() || shouldApplyViewportClip();
|
| + }
|
|
|
| LayoutRect visualOverflowRect() const override;
|
| LayoutRect overflowClipRect(
|
|
|