tor-browser

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

fission_document.html (630B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <meta charset="utf8">
      5  <title>Test fission document</title>
      6  <!-- Any copyright is dedicated to the Public Domain.
      7     - http://creativecommons.org/publicdomain/zero/1.0/ -->
      8 </head>
      9 <body>
     10 <p>Test fission iframe</p>
     11 
     12 <script>
     13  "use strict";
     14  const iframe = document.createElement("iframe");
     15  let iframeUrl = `https://example.org/browser/devtools/shared/commands/resource/tests/fission_iframe.html`;
     16  if (document.location.search) {
     17    iframeUrl += `?${new URLSearchParams(document.location.search)}`;
     18  }
     19  iframe.src = iframeUrl;
     20  document.body.append(iframe);
     21 </script>
     22 </body>
     23 </html>