tor-browser

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

websocket_https_worker.js (260B)


      1 onmessage = function () {
      2  var wsCreated = true;
      3  try {
      4    new WebSocket(
      5      "ws://mochi.test:8888/tests/dom/websocket/tests/file_websocket_hello"
      6    );
      7  } catch (e) {
      8    wsCreated = false;
      9  }
     10  postMessage(wsCreated ? "created" : "not created");
     11 };