tor-browser

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

html_websocket-test-page.html (159B)


      1 <script>
      2 "use strict";
      3 openSocket();
      4 
      5 function openSocket() {
      6  new WebSocket("ws://localhost:8080/");
      7 }
      8 
      9 new Worker("js_websocket-worker-test.js");
     10 </script>