tor-browser

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

embed-img-and-message-top.html (400B)


      1 <!DOCTYPE html>
      2 <html>
      3  <script>
      4    function addImage() {
      5      let img = document.createElement('img');
      6      img.onload = () => top.postMessage('img loaded', '*');
      7      img.onerror = () => top.postMessage('img blocked', '*');
      8      img.src = '/content-security-policy/support/pass.png';
      9      document.body.appendChild(img);
     10    }
     11  </script>
     12  <body onpageshow="addImage();">
     13  </body>
     14 </html>