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