Source code

Revision control

Copy as Markdown

Other Tools

<!--
Any copyright is dedicated to the Public Domain.
-->
<html>
<head>
<title>Indexed Database Test</title>
<script type="text/javascript">
function report(result) {
let message = { source: "iframe2" };
message.result = result;
window.parent.postMessage(JSON.stringify(message), "*");
}
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>