Files
ladybird/Tests/LibWeb/Text/input/wpt-import/IndexedDB/transaction-lifetime.any.html
Zaggy1024 5eeac1b9dd LibWeb: Fire the "blocked" event at the IDB open request
...rather than at each of the open connections. These disagreed with the
spec steps written right above them.

The transaction-lifetime.any.html and idbdatabase_close.any.html tests
pass instead of timing out with these changes, so they've been imported.
2026-03-05 17:12:55 -06:00

16 lines
538 B
HTML

<!doctype html>
<meta charset=utf-8>
<title>Event order when opening a second database when one connection is open already</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/transaction-lifetime.any.js"></script>