Re: [csswg-drafts] [css-ui-4] Make selection change behavior configurable

I would note on top of what Florian said that it is possible to clear the selection using a script if needed
```
addEventListener('pointerdown', e=>{
  if( isInUserSelectNoneRealm(e.target) ) { // using getComputedStyle(...) to check
    getSelection().empty();
  }
})
```
so if desired this effect can be achieve on the web platform in a cross-browser way already.

-- 
GitHub Notification of comment by FremyCompany
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1317#issuecomment-310788256 using your GitHub account

Received on Friday, 23 June 2017 22:40:07 UTC