Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /IndexedDB/idbindex-getAllKeys-enforcerange.any.html - WPT Dashboard Interop Dashboard
- /IndexedDB/idbindex-getAllKeys-enforcerange.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /IndexedDB/idbindex-getAllKeys-enforcerange.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /IndexedDB/idbindex-getAllKeys-enforcerange.any.worker.html - WPT Dashboard Interop Dashboard
// META: title=IndexedDB: IDBIndex getAllKeys() uses [EnforceRange]
// META: global=window,worker
// META: script=resources/support.js
indexeddb_test(
(t, db) => {
const store = db.createObjectStore('store');
const index = store.createIndex('index', 'keyPath');
},
(t, db) => {
const tx = db.transaction('store', 'readonly');
const store = tx.objectStore('store');
const index = store.index('index');
[NaN, Infinity, -Infinity, -1, -Number.MAX_SAFE_INTEGER].forEach(
count => {
assert_throws_js(TypeError, () => {
index.getAllKeys(null, count);
}, `getAllKeys with count ${count} count should throw TypeError`);
});
t.done();
},
'IDBIndex.getAllKeys() should enforce valid range constraints.');