https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0032bc09b92ec14a4c3ec19b161586484ac8a995 authored by Simon Pieters on 10 June 2018, 10:28:37 UTC
Add functional selftests, set status to ERROR when mixing single_test and test
Tip revision: 0032bc0
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