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-finished.any.html - WPT Dashboard Interop Dashboard
- /IndexedDB/idbtransaction-objectStore-finished.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /IndexedDB/idbtransaction-objectStore-finished.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /IndexedDB/idbtransaction-objectStore-finished.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=window,worker
// META: title=IndexedDB: IDBTransaction objectStore() when transaction is finished
// META: script=resources/support.js
'use strict';
indexeddb_test(
(t, db) => {
db.createObjectStore('store');
},
(t, db) => {
const tx = db.transaction('store', 'readonly');
tx.abort();
assert_throws_dom('InvalidStateError', () => tx.objectStore('store'),
'objectStore() should throw if transaction is finished');
t.done();
},
'IDBTransaction objectStore() behavior when transaction is finished'
);