Files
ladybird/Libraries/LibWeb/IndexedDB
Julian Dominguez-Schatz b9153f0ca1 LibWeb/IndexedDB: Allow queryOrOptions to be null in getAllKeys
This fixes a crash on initial load of the page http://demo.actualbudget.org.
Minimal repro of the issue (error in the console without this PR):

<script>
const r = indexedDB.open("t", 1);
r.onupgradeneeded = e => e.target.result.createObjectStore("s", { keyPath: "id" });
r.onsuccess = () => r.result.transaction("s", "readonly").objectStore("s").getAllKeys();
</script>
2025-10-04 20:49:53 +02:00
..
2025-01-14 23:46:09 +01:00
2025-08-27 16:13:25 +02:00
2025-08-27 16:13:25 +02:00
2025-08-27 16:13:25 +02:00