tor-browser

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

object-is-not-intercepted-iframe.html (509B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>iframe for embed-and-object-are-not-intercepted test</title>
      4 <body>
      5 <script>
      6 // The OBJECT element will call this with the result about whether the OBJECT
      7 // request was intercepted by the service worker.
      8 var report_result;
      9 
     10 // Our parent (the root frame of the test) will examine this to get the result.
     11 var test_promise = new Promise(resolve => {
     12    report_result = resolve;
     13  });
     14 </script>
     15 
     16 <object data="embedded-content-from-server.html"></object>
     17 </body>