https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9378d5fbbb755a6c82682e31cfa23167f16c9361 authored by Greg Fraley on 28 March 2018, 19:18:04 UTC
Use unicode-segmentation to iterate graphemes instead of chars
Tip revision: 9378d5f
wasm_indexeddb_test.https.html
<!DOCTYPE html>
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/get-host-info.sub.js"></script>
<script src="resources/load_wasm.js"></script>
<script src="wasm_indexeddb_test.js"></script>
</head>
<body>
<script>
  promise_test(TestIndexedDBLoadStoreSecure, "serialize/deserialize to IndexedDB ");
  promise_test(SaveToIDBAndLoadInWorker, "Save to IDB and load in worker");
  promise_test(SaveToIDBInWorkerAndLoadInMain, "Save in worker to IDB and load in window");
</script>
</body>
</html>
back to top