Re: [pointerevents] Should pointerover and pointerenter work on mobile? (#346)

Seems like we need it only for performance, but we already have performance options. For example, can't we load a page with

```css
* {
  pointer-events: none;
}

.selectively-enable-pointer-events-for-certain-elements {
  pointer-events: auto;
}
```

and control which elements will be hit tested. Seems like it would lead to a more intuitive developer experience, _and_ people can optimize as needed.

I'm willing to bet that the vast majority of the time, hit testing won't be an issue (even if everything is hit tested).

-- 
GitHub Notification of comment by trusktr
Please view or discuss this issue at https://github.com/w3c/pointerevents/issues/346#issuecomment-759082027 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Tuesday, 12 January 2021 22:37:51 UTC