https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a6c135a3242adbdd34803f1b839f06a4cfb4159a authored by Anne van Kesteren on 11 August 2016, 13:34:51 UTC
Upload event listeners have to be registered early, always
Tip revision: a6c135a
idbfactory_open5.htm
<!DOCTYPE html>
<title>IDBFactory.open() - new database is empty</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 open_rq = createdb(async_test(), 'database_name');

    open_rq.onupgradeneeded = function() {};
    open_rq.onsuccess = function(e) {
        assert_equals(e.target.result.objectStoreNames.length, 0, "objectStoreNames.length");
        this.done();
    };
</script>

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