https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a16a09e655fc86fc076f1bfb76e2665263293dea authored by Robin Berjon on 08 April 2014, 20:11:20 UTC
Do not try to have the runner window on top
Tip revision: a16a09e
idbdatabase_deleteObjectStore3.htm
<!DOCTYPE html>
<title>IDBDatabase.deleteObjectStore() - attempt to remove an object store that does not exist </title>
<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(e)
{
    var db = e.target.result;
    assert_throws('NotFoundError',
        function() { db.deleteObjectStore('whatever'); });
    t.done();
}

</script>

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