tenfourfox/testing/web-platform/tests/IndexedDB/idbfactory_open5.htm
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
583 B
HTML

<!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>