Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: LayoutTests/storage/indexeddb/exceptions-expected.txt

Issue 1149873008: IndexedDB: IDL and tests for IDBObjectStore.getAllKeys(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@idb-objectstore-getallkeys
Patch Set: Second patch update. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/storage/indexeddb/exceptions-expected.txt
diff --git a/LayoutTests/storage/indexeddb/exceptions-expected.txt b/LayoutTests/storage/indexeddb/exceptions-expected.txt
index da0b2c03aa1bfdee923ac787f779e45a7208af11..949c4569a9d87329065aeea903b80902d1c2ce85 100644
--- a/LayoutTests/storage/indexeddb/exceptions-expected.txt
+++ b/LayoutTests/storage/indexeddb/exceptions-expected.txt
@@ -242,6 +242,20 @@ PASS code is 0
PASS ename is 'TransactionInactiveError'
Exception message: Failed to execute 'getAll' on 'IDBObjectStore': The transaction has finished.
+IDBObjectStore.getAllKeys()
+If the key parameter is not a valid key or a key range, this method throws a DOMException of type DataError.
+Expecting exception from store.getAllKeys({})
+PASS Exception was thrown.
+PASS code is 0
+PASS ename is 'DataError'
+Exception message: Failed to execute 'getAllKeys' on 'IDBObjectStore': The parameter is not a valid key.
+The transaction this IDBObjectStore belongs to is not active.
+Expecting exception from storeFromInactiveTransaction.getAllKeys(0)
+PASS Exception was thrown.
+PASS code is 0
+PASS ename is 'TransactionInactiveError'
+Exception message: Failed to execute 'getAllKeys' on 'IDBObjectStore': The transaction has finished.
+
IDBObjectStore.index()
There is no index with the given name, compared in a case-sensitive manner, in the connected database.
Expecting exception from store.index('no-such-index')
« no previous file with comments | « LayoutTests/storage/indexeddb/deleted-objects-expected.txt ('k') | LayoutTests/storage/indexeddb/resources/deleted-objects.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698