tor-browser

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

bug1132924_worker.js (225B)


      1 onmessage = function () {
      2  var a = new XMLHttpRequest();
      3  a.open("GET", "empty.html", false);
      4  a.onreadystatechange = function () {
      5    if (a.readyState == 4) {
      6      postMessage(a.response);
      7    }
      8  };
      9  a.send(null);
     10 };