https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e263d32f5b42013fe3e9872c6ced147912b10443 authored by Greg Whitworth on 28 June 2017, 01:37:45 UTC
Made more changes based on analysis of tests that were <= 5 tests to a given url hash in flex
Tip revision: e263d32
idbfactory_open8.htm
<!DOCTYPE html>
<title>IDBFactory.open() - error in version change transaction aborts open</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(), undefined, 13);
    var did_upgrade = false;
    var did_db_abort = false;

    open_rq.onupgradeneeded = function(e) {
        did_upgrade = true;
        e.target.result.onabort = function() {
            did_db_abort = true;
        }
        e.target.transaction.abort();
    };
    open_rq.onerror = function(e) {
        assert_true(did_upgrade);
        assert_equals(e.target.error.name, 'AbortError', 'target.error');
        this.done()
    };
</script>

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