tor-browser

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

worker_bug1301094.js (250B)


      1 onmessage = function (e) {
      2  var xhr = new XMLHttpRequest();
      3  xhr.open("POST", "worker_bug1301094.js", false);
      4  xhr.onload = function () {
      5    self.postMessage("OK");
      6  };
      7 
      8  var fd = new FormData();
      9  fd.append("file", e.data);
     10  xhr.send(fd);
     11 };