tor-browser

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

file_bug1091883_frame.html (350B)


      1 <!DOCTYPE html>
      2 <html>
      3 <body>
      4 <h2>Frame I am.</h2>
      5 <script>
      6 var subframeOrigin = location.hash.substr(1);  // e.g., "http://example.com"
      7 var subframe = document.createElement("iframe");
      8 subframe.src = subframeOrigin +
      9               "/tests/dom/base/test/file_bug1091883_subframe.html";
     10 document.body.appendChild(subframe);
     11 </script>
     12 </body>
     13 </html>