blob: f60dad173fcdd4e995269af066818e5fa5107232 [file] [log] [blame]
onmessage = function(evt) {
new Promise(function(res,rej) { res(); }).then(function() {
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://example.test", false);
try {
xhr.send();
console.log("FAIL: xhr.send() didn't throw");
} catch (e) {
console.log("PASS: xhr.send() throws as expected");
}
postMessage("done");
});
};