tor-browser

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

touch_event_target.html (333B)


      1 <script>
      2 'use strict';
      3 
      4 document.documentElement.onclick = (e) => {
      5  window.top.postMessage({ x: e.clientX, y: e.clientY, screenX: e.screenX, screenY: e.screenY }, "*");
      6 };
      7 
      8 window.onload = () => {	
      9  window.top.postMessage({ ready: true }, "*");
     10 }
     11 </script>
     12 <style>
     13 body {
     14 margin: 0;
     15  background: green;
     16 }
     17 </style>
     18 <body></body>