trisquel-icecat/icecat/layout/reftests/high-contrast/selection-001-ref.html

11 lines
229 B
HTML

<!doctype html>
<title>Test reference</title>
<p>
Some selected text
</p>
<script>
getSelection().removeAllRanges();
let r = document.createRange();
r.selectNode(document.documentElement);
getSelection().addRange(r);
</script>