tor-browser

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

remote-origin-iframe-print.html (657B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1486995">
      4 <link rel="match" href="remote-origin-iframe-print-ref.html">
      5 <style>
      6  iframe {
      7    display: block;
      8    width: 100px;
      9    height: 100px;
     10    border: none;
     11  }
     12 </style>
     13 <script src="/common/get-host-info.sub.js"></script>
     14 <p>The word "PASS" should be seen below.</p>
     15 <script>
     16  const iframe = document.createElement("iframe");
     17  iframe.src = get_host_info().REMOTE_ORIGIN + "/css/css-page/resources/iframe-with-abspos.html";
     18  document.body.appendChild(iframe);
     19 </script>