Revision 89daad32c029798b7203a36f21598fcba470e07d authored by Anthony Ramine on 06 April 2018, 10:22:01 UTC, committed by Anthony Ramine on 06 April 2018, 10:22:01 UTC
See https://github.com/w3c/web-platform-tests/issues/10343#issuecomment-379211826

I know we can't stop progress in WPT just because Servo is stuck in the past,
but let's not make all IDL-related tests fail in it for something that can be
avoided so easily.
1 parent 603e277
Raw File
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