select-unselectable-span-1-ref.html (340B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 </head> 6 <body> 7 <!-- Accessible carets should be put around the unselectable <span> --> 8 <div><span style="user-select:none"><span style="padding:100px">ABC</span></span></div> 9 <script> 10 getSelection().selectAllChildren(document.querySelector("div")); 11 </script> 12 </body> 13 </html>