tor-browser

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

test_bug1317725.js (258B)


      1 onmessage = function (e) {
      2  var data = new FormData();
      3  data.append("Filedata", e.data.slice(0, 127), encodeURI(e.data.name));
      4  var xhr = new XMLHttpRequest();
      5  xhr.open("POST", location.href, false);
      6  xhr.send(data);
      7  postMessage("No crash \\o/");
      8 };