tor-browser

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

file_frameancestors_userpass_frame_b.html (452B)


      1 <html>
      2 <head>
      3  <title>Nested frame</title>
      4  <script>
      5  function proceed() {
      6    parent.parent.postMessage({call: "frameLoaded", testname: "frame_b", uri: window.location.toString()}, "*");
      7  }
      8  </script>
      9 </head>
     10 <body>
     11  <tt>IFRAME B</tt><br/>
     12  <iframe src='http://sampleuser:samplepass@example.com/tests/dom/security/test/csp/file_frameancestors_userpass_frame_d.html'
     13    onerror="proceed()"
     14    onload="proceed()"></iframe><br/>
     15 </body>
     16 </html>