- From: François REMY via GitHub <sysbot+gh@w3.org>
- Date: Fri, 23 Jun 2017 22:39:59 +0000
- To: public-css-archive@w3.org
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