summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/nested_worker_sync_xhr.worker.js
blob: 609ecc49e16db7feae4a8c0a1811e2b5ffef92ca (plain)
1
2
3
4
5
6
7
8
9
10
11
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();