[pointerevents] touch-action:none and overflow:auto (#319)

liviutinta has just created a new issue for https://github.com/w3c/pointerevents:

== touch-action:none and overflow:auto ==
In the following code:
```
<div id="container" style="touch-action:none; overflow: scroll">
  <div id="intermediate" style="overflow: auto">
    <div id="target"></div>
  </div>
</div>
```
If scroll action starts at `#target`, for the purposes of determining supported touch behaviour, should we consider `#intermediate` to be a scroller only if it is able to be scrolled (content is big enough) or in all cases?

This is in reference to [1]: _A touch behavior is supported if it conforms to the touch-action property of each element between the hit tested element and its nearest ancestor with the default touch behavior (including both the hit tested element and the element with the default touch behavior)._
 
[1] https://www.w3.org/TR/pointerevents3/#determining-supported-touch-behavior 

Please view or discuss this issue at https://github.com/w3c/pointerevents/issues/319 using your GitHub account

Received on Tuesday, 14 April 2020 21:32:01 UTC