| Index: third_party/WebKit/Source/core/layout/LayoutGeometryMap.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutGeometryMap.cpp b/third_party/WebKit/Source/core/layout/LayoutGeometryMap.cpp
|
| index ffcc1e67dd60e60da1ce66dbaaa38de228b51dba..989d93ade5b931da4d7d54a6beb988c1c6ba09c8 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutGeometryMap.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutGeometryMap.cpp
|
| @@ -195,7 +195,8 @@ static bool canMapBetweenLayoutObjects(const LayoutObject* layoutObject,
|
| for (const LayoutObject* current = layoutObject;;
|
| current = current->parent()) {
|
| const ComputedStyle& style = current->styleRef();
|
| - if (style.position() == FixedPosition || style.isFlippedBlocksWritingMode())
|
| + if (style.position() == EPosition::kFixed ||
|
| + style.isFlippedBlocksWritingMode())
|
| return false;
|
|
|
| if (current->style()->canContainFixedPositionObjects() ||
|
|
|