tor-browser

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

target-blank-useractivation.html (454B)


      1 <!DOCTYPE html>
      2 <a target="_blank" id="a_click_target">Click me</a>
      3 <map id="map">
      4 <area coords="0,0,50,50" target="_blank">
      5 </map>
      6 <img src="/images/blue.png" usemap="#map" style="width: 50px; height: 50px" id="area_click_target">
      7 <script>
      8 let channel = new BroadcastChannel(window.location.search.substring(1));
      9 channel.addEventListener("message", (e) => {
     10  if (e.data == "close") {
     11    window.close();
     12  }
     13 });
     14 channel.postMessage("ready");
     15 </script>