tor-browser

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

002.html (424B)


      1 <!doctype html>
      2 <title>clearTimeout</title>
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <div id=log></div>
      6 <script>
      7 async_test(function() {
      8  var worker = new Worker('002.js');
      9  var gotMessage = false;
     10  worker.onmessage = function() { gotMessage = true; };
     11  setTimeout(this.step_func(function() { assert_false(gotMessage); this.done(); }), 100);
     12 });
     13 </script>