https://github.com/web-platform-tests/wpt
Revision 880ac9346d9e5b694ac8ce8d5d8ee15f4d41b8d4 authored by jkereliuk on 25 May 2018, 20:00:04 UTC, committed by jkereliuk on 25 May 2018, 20:00:04 UTC
1 parent faf34a2
Raw File
Tip revision: 880ac9346d9e5b694ac8ce8d5d8ee15f4d41b8d4 authored by jkereliuk on 25 May 2018, 20:00:04 UTC
added chrome_webdriver as a product
Tip revision: 880ac93
wasm_serialization_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.

onmessage = function(e) {
    var compiled_module = e.data;
    var instance = new WebAssembly.Instance(compiled_module);
    if (instance === undefined) {
        postMessage("error!");
        return;
    }
    var entrypoint = instance.exports["increment"];

    if (typeof entrypoint !== "function") {
        postMessage("error!");
        return;
    }

    var ret = entrypoint(42);
    postMessage(ret);
}
back to top