tor-browser

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

helper_hittest_iframe_opacity_zero_child.html (290B)


      1 <!DOCTYPE html>
      2 <script>
      3  window.addEventListener("mousedown", event => {
      4    let data = JSON.stringify({
      5      type: "got-mouse-down",
      6      coords: {
      7        offsetX: event.clientX,
      8        offsetY: event.clientY
      9      }
     10    });
     11    window.parent.postMessage(data, "*");
     12  });
     13 </script>