Index: LayoutTests/storage/indexeddb/transaction-active-flag-expected.txt |
diff --git a/LayoutTests/storage/indexeddb/transaction-active-flag-expected.txt b/LayoutTests/storage/indexeddb/transaction-active-flag-expected.txt |
index 81c48f79612b113d607d5d821be30ebe0d36a60e..0862510f1b656fb38c1bf74877085af67e5dbd47 100644 |
--- a/LayoutTests/storage/indexeddb/transaction-active-flag-expected.txt |
+++ b/LayoutTests/storage/indexeddb/transaction-active-flag-expected.txt |
@@ -60,162 +60,162 @@ Expecting exception from store.add(0, 0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'add' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.put(0, 0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'put' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.get(0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'get' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.get(IDBKeyRange.only(0)) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'get' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.delete(0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'delete' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.delete(IDBKeyRange.only(0)) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'delete' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.count() |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'count' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.count(0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'count' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.count(IDBKeyRange.only(0)) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'count' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.clear() |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'clear' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.openCursor() |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openCursor' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.openCursor(0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openCursor' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.openCursor(0, 'next') |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openCursor' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.openCursor(IDBKeyRange.only(0)) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openCursor' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from store.openCursor(IDBKeyRange.only(0), 'next') |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openCursor' on 'IDBObjectStore': The transaction is not active. |
Expecting exception from index.get(0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'get' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.get(IDBKeyRange.only(0)) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'get' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.getKey(0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'getKey' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.getKey(IDBKeyRange.only(0)) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'getKey' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.count() |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'count' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.count(0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'count' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.count(IDBKeyRange.only(0)) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'count' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.openCursor() |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openCursor' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.openCursor(0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openCursor' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.openCursor(0, 'next') |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openCursor' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.openCursor(IDBKeyRange.only(0)) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openCursor' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.openCursor(IDBKeyRange.only(0), 'next') |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openCursor' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.openKeyCursor() |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openKeyCursor' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.openKeyCursor(0) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openKeyCursor' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.openKeyCursor(0, 'next') |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openKeyCursor' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.openKeyCursor(IDBKeyRange.only(0)) |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openKeyCursor' on 'IDBIndex': The transaction is not active. |
Expecting exception from index.openKeyCursor(IDBKeyRange.only(0), 'next') |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'TransactionInactiveError' |
-Exception message: The transaction is not active. |
+Exception message: Failed to execute 'openKeyCursor' on 'IDBIndex': The transaction is not active. |
testEventCallback(): |
Transaction should be active inside a non-IDB-event callback |
@@ -259,7 +259,7 @@ Expecting exception from store = transaction.objectStore('store') |
PASS Exception was thrown. |
PASS code is DOMException.INVALID_STATE_ERR |
PASS ename is 'InvalidStateError' |
-Exception message: The transaction has finished. |
+Exception message: Failed to execute 'objectStore' on 'IDBTransaction': The transaction has finished. |
PASS successfullyParsed is true |
TEST COMPLETE |