collapse-pre-linestart-2.html (539B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>selection.collapse() to line start</title> 4 <link rel="author" title="Kagami Sascha Rosylight" href="mailto:krosylight@mozilla.com"> 5 <link rel="help" href="https://w3c.github.io/selection-api/#dom-selection-collapse"> 6 <link rel="match" href="collapse-pre-linestart-ref.html"> 7 <meta name="assert" content="The caret must appear at the start of the second line."> 8 <pre id=target contenteditable>ABC 9 10 </pre> 11 <script> 12 target.focus(); 13 getSelection().collapse(target.childNodes[0], 4); 14 </script>