https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9281e3c0d16246473fd97107aa0afc893decc100 authored by Anne van Kesteren on 03 May 2018, 06:41:13 UTC
cleanup
Tip revision: 9281e3c
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