https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f31ef37b39dad03d8ba2fcfff0265c662c3bcd8c authored by Bernard Aboba on 02 April 2018, 17:37:00 UTC
Bring RTCCertificate interface up to date with Candidate Recommendation
Tip revision: f31ef37
idbfactory_open4.htm
<!DOCTYPE html>
<title>IDBFactory.open() - new database has default version</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(e) {
        assert_equals(e.target.result.version, 1, "db.version");
    };
    open_rq.onsuccess = function(e) {
        assert_equals(e.target.result.version, 1, "db.version");
        this.done();
    };
</script>

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