https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 99854ef0fa41263dc05c8263b00183aec8e139a0 authored by James Graham on 04 April 2018, 18:13:44 UTC
Fix handling of missing manifest_path in wptcommandline,
Tip revision: 99854ef
wasm_idb_worker.js
// Copyright 2017 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.

importScripts('/resources/testharness.js');
importScripts('resources/load_wasm.js');
importScripts('wasm_indexeddb_test.js');

onmessage = function(e) {
  if (e.data.command === "load") {
    loadFromIndexedDB(e.data.db_name)
      .then(res => {
        if (res === 2) postMessage("ok");
        else postMessage("error");
      },
            error => postMessage(error));
  } else if (e.data.command === "save") {
    createAndSaveToIndexedDB(e.data.db_name)
      .then((m) => {
        postMessage("ok");
      },
            () => postMessage("error"));
  } else {
    postMessage("unknown message: " + e.data);
  }
}
back to top