https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 110e56d19199ff917fe15c739433f3cb7206e12c authored by Kinuko Yasuda on 27 March 2018, 04:00:12 UTC
Don't adjust the NavigationTimings on redirects
Tip revision: 110e56d
compile_worker.js
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

this.importScripts("resources/load_wasm.js");

onmessage = function(msg) {
    createWasmModule()
        .then(postMessage)

}
back to top