Revision 3d2652fec08d0a2a9f429f4fbd7b4c40141bd53c authored by Aryeh Gregor on 14 April 2016, 13:43:40 UTC, committed by Aryeh Gregor on 18 April 2016, 11:44:54 UTC
1 parent b2e4d97
Raw File
idbobjectstore_createIndex13.htm
<!DOCTYPE html>
<meta charset="utf-8">
<title>IDBDatabase.createIndex() - Operate out versionchange throw InvalidStateError </title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="https://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#widl-IDBObjectStore-createIndex-IDBIndex-DOMString-name-DOMString-sequence-DOMString--keyPath-IDBIndexParameters-optionalParameters">
<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 (event) {
        db = event.target.result;
        db.createObjectStore("store");
    }

    open_rq.onsuccess = function (event) {
        var txn = db.transaction("store", "readwrite");
        ostore = txn.objectStore("store");
        t.step(function(){
            assert_throws("InvalidStateError", function(){
                ostore.createIndex("index", "indexedProperty");
            });
        });
        t.done();
    }
</script>

back to top