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

Unified Diff: LayoutTests/storage/indexeddb/resources/deleted-objects.js

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/resources/deleted-objects.js
diff --git a/LayoutTests/storage/indexeddb/resources/deleted-objects.js b/LayoutTests/storage/indexeddb/resources/deleted-objects.js
index 3f248e66782fc3f4016e9b117ffaeec7bb872bf9..aff6a2b9c9fa5c7838be264028cdbb163cce41bb 100644
--- a/LayoutTests/storage/indexeddb/resources/deleted-objects.js
+++ b/LayoutTests/storage/indexeddb/resources/deleted-objects.js
@@ -31,6 +31,8 @@ function testStore()
evalAndExpectException("deletedStore.get(IDBKeyRange.only(0))", "DOMException.INVALID_STATE_ERR", "'InvalidStateError'");
evalAndExpectException("deletedStore.getAll(0)", "DOMException.INVALID_STATE_ERR", "'InvalidStateError'");
evalAndExpectException("deletedStore.getAll(IDBKeyRange.only(0))", "DOMException.INVALID_STATE_ERR", "'InvalidStateError'");
+ evalAndExpectException("deletedStore.getAllKeys(0)", "DOMException.INVALID_STATE_ERR", "'InvalidStateError'");
+ evalAndExpectException("deletedStore.getAllKeys(IDBKeyRange.only(0))", "DOMException.INVALID_STATE_ERR", "'InvalidStateError'");
evalAndExpectException("deletedStore.clear()", "DOMException.INVALID_STATE_ERR", "'InvalidStateError'");
evalAndExpectException("deletedStore.openCursor()", "DOMException.INVALID_STATE_ERR", "'InvalidStateError'");
evalAndExpectException("deletedStore.openCursor(0)", "DOMException.INVALID_STATE_ERR", "'InvalidStateError'");
« no previous file with comments | « LayoutTests/storage/indexeddb/exceptions-expected.txt ('k') | LayoutTests/storage/indexeddb/resources/exceptions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698