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

Unified Diff: LayoutTests/storage/indexeddb/transaction-abort-expected.txt

Issue 99083002: WIP: Migrate generated bindings to new ExceptionState constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 7 years 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/transaction-abort-expected.txt
diff --git a/LayoutTests/storage/indexeddb/transaction-abort-expected.txt b/LayoutTests/storage/indexeddb/transaction-abort-expected.txt
index c2e0206836155d8ced28ba01e4fe4dc80436038c..6a3db10ec7c8469dbaafca70068054e9bfe75dc2 100644
--- a/LayoutTests/storage/indexeddb/transaction-abort-expected.txt
+++ b/LayoutTests/storage/indexeddb/transaction-abort-expected.txt
@@ -25,7 +25,7 @@ Expecting exception from store.add({x: 'value4', y: 'zzz4'}, 'key4')
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.
PASS event.target.error.name is 'AbortError'
PASS trans.error is null
PASS firstError is true
@@ -39,12 +39,12 @@ Expecting exception from store.add({x: 'value5', y: 'zzz5'}, 'key5')
PASS Exception was thrown.
PASS code is 0
PASS ename is 'TransactionInactiveError'
-Exception message: The transaction has finished.
+Exception message: Failed to execute 'add' on 'IDBObjectStore': The transaction has finished.
Expecting exception from trans.abort()
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 'abort' on 'IDBTransaction': The transaction has finished.
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698