https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8f8ad6af8a593f90f26a1db53aea63f89d000c10 authored by Seth Hampson on 28 March 2018, 23:35:04 UTC
Updating tests to test no stream ids and multiple stream ids.
Tip revision: 8f8ad6a
nested_worker.worker.js
importScripts("/resources/testharness.js");

async_test(function() {
    var worker1 = new Worker("support/WorkerBasic.js");
    worker1.postMessage("ping");
    worker1.onmessage = this.step_func_done(function(evt) {
        assert_equals(evt.data, "Pass");
        worker1.terminate();
        done();
    });
}, "Nested worker");
back to top