https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 46b791760d23f9e54134f54366539c77b2b5589b authored by Simon Pieters on 31 March 2016, 13:03:06 UTC
Test initial LF in pre/textarea/listing with innerHTML
Tip revision: 46b7917
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