tor-browser

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

cross-shadow-boundary-slot-complex-3-ref.html (296B)


      1 <!doctype html>
      2 <div>
      3  <div>
      4    <span id="start">Start</span>
      5    <span>Another</span>
      6    <span>End</span>
      7  </div>
      8  <span>Second</span>
      9  <span id="end">Third</span>
     10 </div>
     11 <script>
     12  window.getSelection().setBaseAndExtent(
     13    start.firstChild,
     14    2,
     15    end.firstChild,
     16    4);
     17 </script>