Files
ladybird/Tests/LibWeb/Text/input/wpt-import/IndexedDB/idbindex-rename-errors.any.html
Tim Ledbetter 84043cd82d LibWeb: Track deleted state on IndexedDb Index and ObjectStore
An `InvalidStateError` is now thrown when an attempt is made to
interact with an index or object store that has been deleted.
2026-02-24 17:37:04 +01:00

16 lines
511 B
HTML

<!doctype html>
<meta charset=utf-8>
<title>IndexedDB: index renaming error handling</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-promises.js"></script>
<div id=log></div>
<script src="../IndexedDB/idbindex-rename-errors.any.js"></script>