tor-browser

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

016.html (555B)


      1 <!doctype html>
      2 <title>setTimeout document.open</title>
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <div id="log"></div>
      6 <script>
      7 var tests = [async_test("Timeout on original window, scope"),
      8             async_test("Timeout on original window, this object"),
      9             async_test("Timeout on new window, scope"),
     10             async_test("Timeout on new window, this object")];
     11 function tests_done() {
     12  tests.forEach(function(t) {t.done()});
     13 }
     14 </script>
     15 <iframe src="016-1.html"></iframe>