https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 76fcd56a3903229fb0d9fa84fc1fd91cad108ba9 authored by Hwanseung Lee on 19 March 2018, 01:17:13 UTC
[css-typed-om] support some properties -2-
Tip revision: 76fcd56
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