1
0
Fork 0
firefox/testing/web-platform/tests/IndexedDB/idbobjectstore-getAll-enforcerange.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

24 lines
772 B
JavaScript

// META: global=window,worker
// META: title=IndexedDB: IDBObjectStore getAll() uses [EnforceRange]
// META: script=resources/support.js
// Spec: https://w3c.github.io/IndexedDB/#object-store-interface
'use strict';
indexeddb_test(
(t, db) => {
const store = db.createObjectStore('store');
},
(t, db) => {
const tx = db.transaction('store', 'readonly');
const store = tx.objectStore('store');
[NaN, Infinity, -Infinity, -1, -Number.MAX_SAFE_INTEGER].forEach(
count => {
assert_throws_js(TypeError, () => {
store.getAll(null, count);
}, `getAll with count ${count} count should throw TypeError`);
});
t.done();
},
`IDBObjectStore.getAll() uses [EnforceRange]`);