Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /IndexedDB/idbtransaction-objectStore-exception-order.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset=utf-8>
<title>IndexedDB: IDBTransaction objectStore() Exception Ordering</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/support.js"></script>
<script>
indexeddb_test(
(t, db) => {
const store = db.createObjectStore('s');
},
(t, db) => {
const tx = db.transaction('s', 'readonly', {durability: 'relaxed'});
tx.oncomplete = t.step_func(() => {
assert_throws_dom('InvalidStateError', () => { tx.objectStore('nope'); },
'"finished" check (InvalidStateError) should precede ' +
'"name in scope" check (NotFoundError)');
t.done();
});
},
'IDBTransaction.objectStore exception order: InvalidStateError vs. NotFoundError'
);
</script>