tor-browser

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

scroll_into_view_in_child.html (149B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <div id="target">can you see me?</div>
      4 <script>
      5 window.onload = () => {
      6  target.scrollIntoView();
      7 };
      8 </script>