Files
ladybird/Tests/LibWeb/Text/input/wpt-import/IndexedDB/abort-in-initial-upgradeneeded.any.html
Zaggy1024 ef845fe22a LibWeb: Don't count unversioned databases in IDBFactory::databases()
This code was treating the parameter to the JS::Array as if it was a
capacity, but that causes JS to see more databases than are actually
accessible if a database was being created in an aborted transaction.
2026-03-20 23:59:35 -05:00

16 lines
479 B
HTML

<!doctype html>
<meta charset=utf-8>
<title>IndexedDB</title>
<script>
self.GLOBAL = {
isWindow: function() { return true; },
isWorker: function() { return false; },
isShadowRealm: function() { return false; },
};
</script>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="resources/support.js"></script>
<div id=log></div>
<script src="../IndexedDB/abort-in-initial-upgradeneeded.any.js"></script>