tor-browser

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

websocket5.worker.js (538B)


      1 /* exported tests */
      2 
      3 importScripts("websocket_helpers.js");
      4 importScripts("websocket_tests.js");
      5 importScripts("websocket_worker_helpers.js");
      6 
      7 var tests = [
      8  test42, // non-char utf-8 sequences
      9  test43, // Test setting binaryType attribute
     10  test44, // Test sending/receving binary ArrayBuffer
     11  test46, // Test that we don't dispatch incoming msgs once in CLOSING state
     12  test47, // Make sure onerror/onclose aren't called during close()
     13  test49, // Test that we fail if subprotocol returned from server doesn't match
     14 ];
     15 
     16 doTest();