Title: [192958] trunk/LayoutTests
Revision
192958
Author
beid...@apple.com
Date
2015-12-02 12:53:22 -0800 (Wed, 02 Dec 2015)

Log Message

Modern IDB: Enable a couple more passing tests.
https://bugs.webkit.org/show_bug.cgi?id=151766

Reviewed by Beth Dakin.

* platform/mac-wk1/TestExpectations:
* storage/indexeddb/create-object-store-options-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (192957 => 192958)


--- trunk/LayoutTests/ChangeLog	2015-12-02 20:50:38 UTC (rev 192957)
+++ trunk/LayoutTests/ChangeLog	2015-12-02 20:53:22 UTC (rev 192958)
@@ -1,3 +1,13 @@
+2015-12-02  Brady Eidson  <beid...@apple.com>
+
+        Modern IDB: Enable a couple more passing tests.
+        https://bugs.webkit.org/show_bug.cgi?id=151766
+
+        Reviewed by Beth Dakin.
+
+        * platform/mac-wk1/TestExpectations:
+        * storage/indexeddb/create-object-store-options-expected.txt:
+
 2015-12-02  Ryan Haddad  <ryanhad...@apple.com>
 
         Skipping tests on Win that fail due to unimplemented showModalDialog function.

Modified: trunk/LayoutTests/platform/mac-wk1/TestExpectations (192957 => 192958)


--- trunk/LayoutTests/platform/mac-wk1/TestExpectations	2015-12-02 20:50:38 UTC (rev 192957)
+++ trunk/LayoutTests/platform/mac-wk1/TestExpectations	2015-12-02 20:53:22 UTC (rev 192958)
@@ -73,7 +73,8 @@
 # Tests that are skipped above but that pass in Modern IDB are unskipped below.
 storage/indexeddb/aborted-versionchange-closes.html [ Pass ]
 storage/indexeddb/basics.html [ Pass ]
-storage/indexeddb/create-and-remove-object-store.html
+storage/indexeddb/create-and-remove-object-store.html [ Pass ]
+storage/indexeddb/create-object-store-options.html [ Pass ]
 storage/indexeddb/cursor-cast.html [ Pass ]
 storage/indexeddb/cursor-finished.html [ Pass ]
 storage/indexeddb/modern [ Pass ]

Modified: trunk/LayoutTests/storage/indexeddb/create-object-store-options-expected.txt (192957 => 192958)


--- trunk/LayoutTests/storage/indexeddb/create-object-store-options-expected.txt	2015-12-02 20:50:38 UTC (rev 192957)
+++ trunk/LayoutTests/storage/indexeddb/create-object-store-options-expected.txt	2015-12-02 20:53:22 UTC (rev 192958)
@@ -16,10 +16,10 @@
 trans.objectStore('a').put({'a': 0})
 Expecting TypeError exception from db.createObjectStore('d', 'bar');
 PASS Exception was thrown.
-PASS db.createObjectStore('d', 'bar'); threw TypeError: Failed to execute 'createObjectStore' on 'IDBDatabase': parameter 2 ('options') is not an object.
+PASS db.createObjectStore('d', 'bar'); threw TypeError: Not an object.
 Expecting TypeError exception from db.createObjectStore('e', false);
 PASS Exception was thrown.
-PASS db.createObjectStore('e', false); threw TypeError: Failed to execute 'createObjectStore' on 'IDBDatabase': parameter 2 ('options') is not an object.
+PASS db.createObjectStore('e', false); threw TypeError: Not an object.
 trans.objectStore('b').put({'a': 0}, 0)
 trans.objectStore('a').get(0)
 PASS event.target.result.a is {a: 0}
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to