tor-browser

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

sharedWorker_console.js (366B)


      1 /**
      2 * Any copyright is dedicated to the Public Domain.
      3 * http://creativecommons.org/publicdomain/zero/1.0/
      4 */
      5 "use strict";
      6 
      7 onconnect = function (evt) {
      8  console.profile("Hello profiling from a SharedWorker!");
      9  console.log("Hello world from a SharedWorker!");
     10  console.log("Here is a SAB", new SharedArrayBuffer(1024));
     11  evt.ports[0].postMessage("ok!");
     12 };