blob: 49b33f2fd862fc2f9c6a1e2949ee99e55b9f6b5f [file] [log] [blame]
<!doctype html>
<style>p::first-letter { font-size: 500%; color: red; }</style>
<p> [!(5)#]9abcdefghi</p>
<script>
const selection = window.getSelection();
const sample = document.querySelector('p');
// Select "(5)"
selection.collapse(sample.firstChild, 4);
selection.extend(sample.firstChild, 7);
</script>