tor-browser

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

file_iframe_user_activated.html (239B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>user activated iframe</title>
      5 </head>
      6 <body>
      7 <script>
      8 onload = function() {
      9  SpecialPowers.wrap(document).notifyUserGestureActivation();
     10  parent.postMessage("done", "*");
     11 }
     12 </script>
     13 </body>
     14 </html>