| Index: third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp b/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| index c7b37f58633099c42dcca451ab6287ffe72c5c54..b52591be461455435b979af16cb9edc5c9a80da5 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| @@ -354,7 +354,7 @@ bool SVGLayoutSupport::isOverflowHidden(const LayoutObject* object)
|
| // LayoutSVGRoot should never query for overflow state - it should always clip itself to the initial viewport size.
|
| ASSERT(!object->isDocumentElement());
|
|
|
| - return object->style()->overflowX() == OHIDDEN || object->style()->overflowX() == OSCROLL;
|
| + return object->style()->overflowX() == OverflowHidden || object->style()->overflowX() == OverflowScroll;
|
| }
|
|
|
| void SVGLayoutSupport::intersectPaintInvalidationRectWithResources(const LayoutObject* layoutObject, FloatRect& paintInvalidationRect)
|
|
|