diff options
Diffstat (limited to 'testing/web-platform/tests/wasm/compile_worker.js')
-rw-r--r-- | testing/web-platform/tests/wasm/compile_worker.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/web-platform/tests/wasm/compile_worker.js b/testing/web-platform/tests/wasm/compile_worker.js new file mode 100644 index 0000000000..9a28efb970 --- /dev/null +++ b/testing/web-platform/tests/wasm/compile_worker.js @@ -0,0 +1,11 @@ +// Copyright 2016 The Chromium Authors +// 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) + +} |