1
0
Fork 0
firefox/dom/indexedDB/test/third_party_iframe2.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

34 lines
748 B
HTML

<!--
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">
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>