select-unselectable-span-2-ref.html (373B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style> 6 ::selection { 7 color: currentColor; 8 background-color: transparent; 9 } 10 </style> 11 </head> 12 <body> 13 <!-- Accessible carets should be put around "ABC" --> 14 <div><span style="padding:100px">ABC</span></div> 15 <script> 16 getSelection().selectAllChildren(document.querySelector("div")); 17 </script> 18 </body> 19 </html>