tor-browser

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

importscripts.html (373B)


      1 <script src=/resources/testharness.js></script>
      2 <script src=/resources/testharnessreport.js></script>
      3 <div id=log></div>
      4 <script>
      5 async_test(function(t) {
      6   var w = new Worker("importscripts.js")
      7   w.onmessage = t.step_func(function(e) {
      8     if(e.data == "END")
      9       t.done()
     10     else
     11       assert_equals(e.data, "PASS")
     12   })
     13 }, "Test importScripts()")
     14 </script>