mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
...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.
16 lines
538 B
HTML
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>
|