| 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'");
|
|
|