Files
ladybird/Tests/LibWeb/Text/input/wpt-import/IndexedDB/request-event-ordering-small-values.any.html
Zaggy1024 547d4eb1f5 LibWeb: Implement IndexedDB request/transaction reverts
To allow these to be reverted, we store mutation logs per object store
in the scope of a readwrite transaction to track the modifications that
were made by it. If a revert is needed, the log is played in reverse to
bring us back to the original state.
2026-03-20 23:59:35 -05:00

19 lines
688 B
HTML

<!doctype html>
<meta charset=utf-8>
<title>IndexedDB: request result events are delivered in order</title>
<meta name="timeout" content="long">
<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-promises.js"></script>
<script src="resources/support.js"></script>
<script src="resources/request-event-ordering-common.js"></script>
<div id=log></div>
<script src="../IndexedDB/request-event-ordering-small-values.any.js"></script>