https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 246e6e68552a94a85be3810cbe3c82c50fbcca39 authored by Darren Shen on 11 April 2018, 05:55:17 UTC
[css-typed-om] Add support for scroll properties.
Tip revision: 246e6e6
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