tor-browser

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

self-text-directive-iframe.html (390B)


      1 <!doctype html>
      2 <!-- This document navigates itself to a text directive and messages the top window with
      3     the resulting scroll position -->
      4 <style>
      5  p {
      6    margin-top: 2000px;
      7  }
      8 </style>
      9 
     10 <script>
     11  window.onscroll = () => {
     12    window.top.postMessage("did_scroll", "*");
     13  };
     14  window.onload = () => {
     15    window.location.hash = ':~:text=Target';
     16  };
     17 </script>
     18 
     19 <p>
     20  Target
     21 </p>