| 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 7dbdbe85270ede585b034b9fe9eea41f2b074a47..9e096fb4e94ff2d1efd9c82cbf5d7f33cd80f901 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| @@ -374,8 +374,8 @@ bool SVGLayoutSupport::isOverflowHidden(const LayoutObject* object) {
|
| // itself to the initial viewport size.
|
| ASSERT(!object->isDocumentElement());
|
|
|
| - return object->style()->overflowX() == OverflowHidden ||
|
| - object->style()->overflowX() == OverflowScroll;
|
| + return object->style()->overflowX() == EOverflow::Hidden ||
|
| + object->style()->overflowX() == EOverflow::Scroll;
|
| }
|
|
|
| void SVGLayoutSupport::adjustVisualRectWithResources(
|
|
|