https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 1553cb43af08443e2d04a01bd6925db002234174 authored by Ian Clelland on 28 September 2017, 19:28:02 UTC
Add Web Bluetooth as a policy-controlled feature
Tip revision: 1553cb4
wasm_indexeddb_test.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>
  if (window.location.origin != get_host_info().AUTHENTICATED_ORIGIN) {
    window.location = get_host_info().AUTHENTICATED_ORIGIN + window.location.pathname;
  } else {
    promise_test(TestIndexedDBLoadStoreSecure, "serialize/deserialize to IndexedDB in secure context");
  }
</script>
</body>
</html>
back to top