tor-browser

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

004.html (558B)


      1 <!doctype html>
      2 <title>WebSockets: navigating nested browsing context with closed websocket</title>
      3 <meta name=timeout content=long>
      4 <script src=/resources/testharness.js></script>
      5 <script src=/resources/testharnessreport.js></script>
      6 <script src=/common/utils.js></script>
      7 <div id=log></div>
      8 <script>
      9 var uuid;
     10 var t = async_test();
     11 t.step(function() {uuid = token()});
     12 var navigate = t.step_func(function() {
     13  document.getElementsByTagName("iframe")[0].src = 'data:text/html,<body onload="history.back()">';
     14 });
     15 </script>
     16 <iframe src=002-1.html></iframe>