https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 1614d65d2cd50d167c605cf212f35db792a38c31 authored by Yutaka Hirano on 03 April 2018, 01:48:59 UTC
fix
Tip revision: 1614d65
idbdatabase_createObjectStore3.htm
<!DOCTYPE html>
<title>IDBDatabase.createObjectStore() - attempt to create an object store outside of a version change transaction </title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support.js"></script>

<script>

var t = async_test(),
    open_rq = createdb(t)

open_rq.onupgradeneeded = function() {}
open_rq.onsuccess = function (e) {
    var db = e.target.result
    assert_throws(
        'InvalidStateError',
        function() { db.createObjectStore('fails') })
    t.done();
}

</script>

<div id="log"></div>
back to top