Index: LayoutTests/imported/web-platform-tests/IndexedDB/idbfactory_open5.htm |
diff --git a/LayoutTests/imported/web-platform-tests/IndexedDB/idbfactory_open5.htm b/LayoutTests/imported/web-platform-tests/IndexedDB/idbfactory_open5.htm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c6c69b52a36f69c0c7971dcbf923c359d084cd8b |
--- /dev/null |
+++ b/LayoutTests/imported/web-platform-tests/IndexedDB/idbfactory_open5.htm |
@@ -0,0 +1,18 @@ |
+<!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> |