| Index: third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp b/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
|
| index 96fea433050e14bdac5c888154a5b51b73ed393b..181bc55e03ec690d1cd5953790686a43fc8e1a5f 100644
|
| --- a/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
|
| +++ b/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
|
| @@ -284,7 +284,7 @@ static WebLayerPositionConstraint computePositionConstraint(
|
| const PaintLayer* layer) {
|
| DCHECK(layer->hasCompositedLayerMapping());
|
| do {
|
| - if (layer->layoutObject()->style()->position() == FixedPosition) {
|
| + if (layer->layoutObject()->style()->position() == EPosition::kFixed) {
|
| const LayoutObject* fixedPositionObject = layer->layoutObject();
|
| bool fixedToRight = !fixedPositionObject->style()->right().isAuto();
|
| bool fixedToBottom = !fixedPositionObject->style()->bottom().isAuto();
|
|
|