| Index: third_party/WebKit/Source/core/layout/LayoutObject.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
|
| index 2f529857d1578833956c90f49f3161ebce026cac..a509ff3ebefbf5889e74ed5d4c843d351e468c41 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
|
| @@ -1476,9 +1476,9 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
|
| }
|
|
|
| bool visibleToHitTestRequest(const HitTestRequest& request) const {
|
| - return style()->visibility() == EVisibility::Visible &&
|
| + return style()->visibility() == EVisibility::kVisible &&
|
| (request.ignorePointerEventsNone() ||
|
| - style()->pointerEvents() != EPointerEvents::None) &&
|
| + style()->pointerEvents() != EPointerEvents::kNone) &&
|
| !isInert();
|
| }
|
|
|
|
|