tor-browser

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

test-remote-iframe.html (461B)


      1 <html>
      2  <head>
      3    <meta charset="utf-8" />
      4    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      5    <style>
      6      body {
      7        margin: 0;
      8        height: 100%;
      9        display: flex;
     10        flex-direction: column;
     11      }
     12      iframe {
     13        height: 100%;
     14      }
     15    </style>
     16  </head>
     17  <body>
     18    Some stuff
     19    <iframe
     20      src="https://example.org/tests/junit/hello.html"
     21      id="iframe"
     22    ></iframe>
     23  </body>
     24 </html>