summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/worker_bug1301094.js
blob: 69cc25d23d62d98ce7b7eec86d8602b8a72c3373 (plain)
1
2
3
4
5
6
7
8
9
10
11
onmessage = function(e) {
  var xhr = new XMLHttpRequest();
  xhr.open("POST", 'worker_bug1301094.js', false);
  xhr.onload = function() {
    self.postMessage("OK");
  };

  var fd = new FormData();
  fd.append('file', e.data);
  xhr.send(fd);
}