blob: e25b4296b0331e192609d929197e4a6ac61e8a94 [file] [log] [blame]
<!doctype html>
<p id="start"><span style="font-size: 200%; color:red"> [!(5)#]</span>9abcdefghi</p>
<div id="start2">ABC</div>
<p><span style="font-size: 200%; color:red">(a)</span> bc</p>
<div id="end2">DEF</div>
<p id="end"><span style="font-size: 200%; color:red">[!(3)#]</span>789abcd</p>
<script>
const selection = window.getSelection();
const start = document.getElementById('start');
const end = document.getElementById('end');
// Select "^(5) to 78|"
selection.collapse(start.firstChild.firstChild, 4);
selection.extend(end.lastChild, 2);
</script>