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

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

Issue 19107003: IndexedDB: Log exception messages (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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/transaction-read-only-expected.txt
diff --git a/LayoutTests/storage/indexeddb/transaction-read-only-expected.txt b/LayoutTests/storage/indexeddb/transaction-read-only-expected.txt
index 70a7b846126936a3b5dc70795d5c2367782c8185..08552e555d7ab11bd911e465d5ec2acedf1c41d7 100644
--- a/LayoutTests/storage/indexeddb/transaction-read-only-expected.txt
+++ b/LayoutTests/storage/indexeddb/transaction-read-only-expected.txt
@@ -15,11 +15,13 @@ Expecting exception from trans.objectStore('store').put('a', 'b')
PASS Exception was thrown.
PASS code is 0
PASS ename is 'ReadOnlyError'
+Exception message: A write operation was attempted in a read-only transaction.
trans = db.transaction('store')
Expecting exception from trans.objectStore('store').delete('x')
PASS Exception was thrown.
PASS code is 0
PASS ename is 'ReadOnlyError'
+Exception message: A write operation was attempted in a read-only transaction.
trans = db.transaction('store')
cur = trans.objectStore('store').openCursor()
PASS !event.target.result is false
@@ -27,6 +29,7 @@ Expecting exception from event.target.result.delete()
PASS Exception was thrown.
PASS code is 0
PASS ename is 'ReadOnlyError'
+Exception message: A write operation was attempted in a read-only transaction.
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698