https://github.com/web-platform-tests/wpt
Raw File
Tip revision: fe7370b291d5c745a1bd566f00e08ade4f7f6f01 authored by kritisingh1 on 25 March 2018, 09:46:02 UTC
expand tests to test in reverse direction
Tip revision: fe7370b
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