forked from mirrors/gecko-dev
11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
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);
|
|
}
|