Revision 3da663385acdd3ef9ef170ab2e167fd643c7b317 authored by James Graham on 19 October 2016, 12:43:59 UTC, committed by James Graham on 20 October 2016, 13:13:35 UTC
1 parent be27f89
Raw File
idbindex_openCursor3.htm
<!DOCTYPE html>
<meta charset="utf-8">
<title>IDBIndex.openCursor() - throw InvalidStateError on index deleted by aborted upgrade</title>
<link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-opencursor">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=support.js></script>
<div id="log"></div>
<script>
    var db,
        t = async_test();

    var open_rq = createdb(t);
    open_rq.onupgradeneeded = function(e) {
        db = e.target.result;
        var store = db.createObjectStore("store", { keyPath: "key" });
        var index = store.createIndex("index", "indexedProperty");
        store.add({ key: 1, indexedProperty: "data" });

        e.target.transaction.abort();

        assert_throws("InvalidStateError", function(){
            index.openCursor();
        });
        t.done();
    }
</script>
back to top