| Index: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
|
| index 9237e04590abe81fc6949bfd8b2280c75224019d..9a11c12539444ff9e77ed2f7389253e964c8bef3 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
|
| @@ -829,8 +829,7 @@ static bool overflowDefinesAutomaticScrollbar(EOverflow overflow)
|
| // handled externally in the RLC.
|
| static bool canHaveOverflowScrollbars(const LayoutBox& box)
|
| {
|
| - bool rootLayerScrolls = box.document().settings() && box.document().settings()->rootLayerScrolls();
|
| - return (rootLayerScrolls || !box.isLayoutView()) && box.document().viewportDefiningElement() != box.node();
|
| + return (RuntimeEnabledFeatures::rootLayerScrollingEnabled() || !box.isLayoutView()) && box.document().viewportDefiningElement() != box.node();
|
| }
|
|
|
| void PaintLayerScrollableArea::updateAfterStyleChange(const ComputedStyle* oldStyle)
|
|
|