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