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