| Index: third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
|
| index e2fdb574a29d7cfd7115ba2dc32a58a153ca83d4..7f8600750a4b8fabf4ae6ca25b0db0b993844ed3 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
|
| @@ -567,8 +567,8 @@ PassRefPtr<ComputedStyle> StyleResolver::styleForDocument(Document& document) {
|
| // Document::inheritHtmlAndBodyElementStyles will set the final overflow
|
| // style values, but they should initially be auto to avoid premature
|
| // scrollbar removal in PaintLayerScrollableArea::updateAfterStyleChange.
|
| - documentStyle->setOverflowX(EOverflow::Auto);
|
| - documentStyle->setOverflowY(EOverflow::Auto);
|
| + documentStyle->setOverflowX(EOverflow::kAuto);
|
| + documentStyle->setOverflowY(EOverflow::kAuto);
|
|
|
| document.setupFontBuilder(*documentStyle);
|
|
|
|
|