| Index: Source/core/rendering/RenderObject.h
|
| diff --git a/Source/core/rendering/RenderObject.h b/Source/core/rendering/RenderObject.h
|
| index e696a29c813d8c98b9258575c86151668ffe76d7..374d4e5131297ab7f0b2827411759696a58ed3a2 100644
|
| --- a/Source/core/rendering/RenderObject.h
|
| +++ b/Source/core/rendering/RenderObject.h
|
| @@ -949,14 +949,7 @@ public:
|
|
|
| bool isInert() const;
|
|
|
| - bool visibleForTouchAction() 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(); }
|
|
|
|
|