blob: bcb2608194fbc4fe5d5ed79303ff67e212523eb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
<title>Indexed Database Test</title>
<script type="text/javascript;version=1.7">
function report(result) {
let message = { source: "iframe" };
message.result = result;
window.parent.postMessage(message.toSource(), "*");
}
function runIndexedDBTest() {
try {
let request = indexedDB.open(window.location.pathname, 1);
request.onsuccess = function(event) {
report(!!(event.target.result instanceof IDBDatabase));
}
}
catch (e) {
report(false);
}
}
</script>
</head>
<body onload="runIndexedDBTest();">
</body>
</html>
|