mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
8 lines
256 B
JavaScript
8 lines
256 B
JavaScript
onmessage = function(e) {
|
|
var data = new FormData();
|
|
data.append('Filedata', e.data.slice(0, 127), encodeURI(e.data.name));
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open('POST', location.href, false);
|
|
xhr.send(data);
|
|
postMessage("No crash \\o/");
|
|
}
|