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

Unified Diff: LayoutTests/storage/indexeddb/cursor-finished-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/cursor-finished-expected.txt
diff --git a/LayoutTests/storage/indexeddb/cursor-finished-expected.txt b/LayoutTests/storage/indexeddb/cursor-finished-expected.txt
index 34a086cc7a4a5887efd76b13c944e112c8a920d0..53d4b4f714c4987ddbc286b61090ee5d99af693e 100644
--- a/LayoutTests/storage/indexeddb/cursor-finished-expected.txt
+++ b/LayoutTests/storage/indexeddb/cursor-finished-expected.txt
@@ -49,22 +49,27 @@ Expecting exception from savedCursor.update('value')
PASS Exception was thrown.
PASS code is DOMException.INVALID_STATE_ERR
PASS ename is 'InvalidStateError'
+Exception message: The cursor is being iterated or has iterated past its end.
Expecting exception from savedCursor.advance(1)
PASS Exception was thrown.
PASS code is DOMException.INVALID_STATE_ERR
PASS ename is 'InvalidStateError'
+Exception message: The cursor is being iterated or has iterated past its end.
Expecting exception from savedCursor.continue()
PASS Exception was thrown.
PASS code is DOMException.INVALID_STATE_ERR
PASS ename is 'InvalidStateError'
+Exception message: The cursor is being iterated or has iterated past its end.
Expecting exception from savedCursor.continue('key')
PASS Exception was thrown.
PASS code is DOMException.INVALID_STATE_ERR
PASS ename is 'InvalidStateError'
+Exception message: The cursor is being iterated or has iterated past its end.
Expecting exception from savedCursor.delete()
PASS Exception was thrown.
PASS code is DOMException.INVALID_STATE_ERR
PASS ename is 'InvalidStateError'
+Exception message: The cursor is being iterated or has iterated past its end.
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698