https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a588436c16db4c8ae8644662124ff1af7e03f0d9 authored by Stephen McGruer on 03 April 2018, 21:32:18 UTC
Web Animations: Add test for Document::getAnimations across iframes
Tip revision: a588436
idbtransaction-objectStore-exception-order.html
<!doctype html>
<meta charset=utf-8>
<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>
<script>

indexeddb_test(
  (t, db) => {
    const store = db.createObjectStore('s');
  },
  (t, db) => {
    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)');
      t.done();
    });
  },
  'IDBTransaction.objectStore exception order: InvalidStateError vs. NotFoundError'
);

</script>
back to top