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

Unified Diff: LayoutTests/storage/indexeddb/cursor-continue-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-continue-expected.txt
diff --git a/LayoutTests/storage/indexeddb/cursor-continue-expected.txt b/LayoutTests/storage/indexeddb/cursor-continue-expected.txt
index dea78d069a52090d720179bc6febdb39d7465791..37fa553a4a9d3223aa7486b3879f20dc5727faaf 100644
--- a/LayoutTests/storage/indexeddb/cursor-continue-expected.txt
+++ b/LayoutTests/storage/indexeddb/cursor-continue-expected.txt
@@ -81,6 +81,7 @@ Expecting exception from event.target.result.continue(1)
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The parameter is less than or equal to this cursor's position.
indexObject.openKeyCursor(null, 'next')
PASS event.target.result.primaryKey is 0
@@ -90,6 +91,7 @@ Expecting exception from event.target.result.continue(3.14159)
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The parameter is less than or equal to this cursor's position.
indexObject.openKeyCursor(null, 'prev')
PASS event.target.result.primaryKey is 17
@@ -99,6 +101,7 @@ Expecting exception from event.target.result.continue('A bit3')
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The parameter is greater than or equal to this cursor's position.
indexObject.openKeyCursor(null, 'prev')
PASS event.target.result.primaryKey is 17
@@ -109,10 +112,12 @@ Expecting exception from event.target.result.continue('A bit2')
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The parameter is greater than or equal to this cursor's position.
Expecting exception from cursor.continue()
PASS Exception was thrown.
PASS code is 0
PASS ename is 'TransactionInactiveError'
+Exception message: The transaction has finished.
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698