| Index: Source/core/rendering/RenderObject.h
|
| diff --git a/Source/core/rendering/RenderObject.h b/Source/core/rendering/RenderObject.h
|
| index e696a29c813d8c98b9258575c86151668ffe76d7..d6e3b6a794947038c83b7d940ab7557a2cdf06fa 100644
|
| --- a/Source/core/rendering/RenderObject.h
|
| +++ b/Source/core/rendering/RenderObject.h
|
| @@ -949,14 +949,9 @@ public:
|
|
|
| bool isInert() const;
|
|
|
| - bool visibleForTouchAction() const;
|
| + bool supportsTouchAction() const;
|
|
|
| - bool visibleToHitTestRequest(const HitTestRequest& request) const
|
| - {
|
| - if (request.touchAction() && !visibleForTouchAction())
|
| - return false;
|
| - return style()->visibility() == VISIBLE && (request.ignorePointerEventsNone() || style()->pointerEvents() != PE_NONE) && !isInert();
|
| - }
|
| + bool visibleToHitTestRequest(const HitTestRequest& request) const { return style()->visibility() == VISIBLE && (request.ignorePointerEventsNone() || style()->pointerEvents() != PE_NONE) && !isInert(); }
|
|
|
| bool visibleToHitTesting() const { return style()->visibility() == VISIBLE && style()->pointerEvents() != PE_NONE && !isInert(); }
|
|
|
|
|