[w3c/uievents] [feature request] Standardize long press touch event (#291)

In mobile device it was common for application to handle long press as context menu or simulated right click. We can simulate it with start and timer. But it not standard so we have to reimplement it. The threshold also actually varied between platform and could be customized from OS setting for each user's preference

For consistent experience, I would like to have standard long press event that will use OS's threshold to fire event if the element was bind to it

```HTML
<div onlongpress="longPressEvent(e)">
    open context menu
</div>
```

Is it possible?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/uievents/issues/291

Received on Tuesday, 16 February 2021 09:00:35 UTC