tor-browser

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

WorkerDebuggerGlobalScope.reportError_debugger.js (196B)


      1 "use strict";
      2 
      3 this.onmessage = function (event) {
      4  switch (event.data) {
      5    case "report":
      6      reportError("reported");
      7      break;
      8    case "throw":
      9      throw new Error("thrown");
     10  }
     11 };