tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

collapse-pre-linestart-1.html (542B)


      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 <br></pre>
     10 <script>
     11  target.focus();
     12  getSelection().collapse(target.childNodes[0], 4);
     13 </script>