tor-browser

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

worker_bug1278777.js (189B)


      1 var xhr = new XMLHttpRequest();
      2 xhr.responseType = "blob";
      3 xhr.open("GET", "worker_bug1278777.js");
      4 
      5 xhr.onload = function () {
      6  postMessage(xhr.response instanceof Blob);
      7 };
      8 
      9 xhr.send();