blob: 609ecc49e16db7feae4a8c0a1811e2b5ffef92ca [file] [log] [blame]
importScripts("/resources/testharness.js");
async_test(function() {
const worker = new Worker("support/sync_xhr.js");
worker.postMessage("ping");
worker.onmessage = this.step_func_done(function(evt) {
assert_equals(evt.data, "Pass");
worker.terminate();
});
}, "Nested worker that issues a sync XHR");
done();