[w3c/touch-events] Should spec mention “touch adjustment" behavior? (#93)

Currently Edge, Chrome and Safari have "touch adjustment" feature to select hit targets for touch. 

Edge's implementation seems adjusting the touchstart coordinates and target to a nearby target. If the touch events is interpreted as a tap gesture, the mouse events will be implicit capture to the same target.
Chrome (and Safari) only do adjustment when interprets a sequence of touch events as a tap gesture. And only coordinates and targets of mouse events will be changed. Which causing developer feel confuse that the target are different. (such as crbug.com/399761). We are [planning to change that](https://bugs.chromium.org/p/chromium/issues/detail?id=625198). 
However, modified coordinates for touch might not be a good idea since the original touch point will be totally concealed from developers. So our plan is adjusting the touch target only and keep original coordinates.  

Should the touch event spec mention that UA might adjusting the touch targets. Maybe adding a note to let developer know? 
(And there is a [similar issue to pointer event spec](https://github.com/w3c/pointerevents/issues/126) )

-- 
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/touch-events/issues/93

Received on Wednesday, 28 March 2018 19:43:39 UTC