| <title>IndexedDB: IDBTransaction objectStore() Exception Ordering</title> |
| <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbtransaction-objectstore"> |
| <script src="/resources/testharness.js"></script> |
| <script src="/resources/testharnessreport.js"></script> |
| <script src="support.js"></script> |
| const store = db.createObjectStore('s'); |
| const tx = db.transaction('s'); |
| tx.oncomplete = t.step_func(() => { |
| assert_throws('InvalidStateError', () => { tx.objectStore('nope'); }, |
| '"finished" check (InvalidStateError) should precede ' + |
| '"name in scope" check (NotFoundError)'); |
| 'IDBTransaction.objectStore exception order: InvalidStateError vs. NotFoundError' |