selection-001-ref.html (229B)
1 <!doctype html> 2 <title>Test reference</title> 3 <p> 4 Some selected text 5 </p> 6 <script> 7 getSelection().removeAllRanges(); 8 let r = document.createRange(); 9 r.selectNode(document.documentElement); 10 getSelection().addRange(r); 11 </script>