tor-browser

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

test_bug1132924.html (606B)


      1 <!--
      2  Any copyright is dedicated to the Public Domain.
      3  http://creativecommons.org/publicdomain/zero/1.0/
      4 -->
      5 <!DOCTYPE HTML>
      6 <html>
      7 <head>
      8  <title>Test for 1132924</title>
      9  <script src="/tests/SimpleTest/SimpleTest.js"></script>
     10  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
     11 </head>
     12 <body>
     13 
     14 <script class="testbody" type="text/javascript">
     15 
     16 SimpleTest.waitForExplicitFinish();
     17 var w = new Worker('bug1132924_worker.js');
     18 w.onmessage = function(event) {
     19  ok(true, "We are still alive.");
     20  SimpleTest.finish();
     21 }
     22 
     23 w.postMessage('go');
     24 
     25 </script>
     26 </pre>
     27 </body>
     28 </html>