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

Unified Diff: LayoutTests/storage/indexeddb/keyrange-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/keyrange-expected.txt
diff --git a/LayoutTests/storage/indexeddb/keyrange-expected.txt b/LayoutTests/storage/indexeddb/keyrange-expected.txt
index 92a3c2164a9fe81a3e2977bf255650dd657afd86..b3006e65593a7d1146d9f4588c323392c29ef027 100644
--- a/LayoutTests/storage/indexeddb/keyrange-expected.txt
+++ b/LayoutTests/storage/indexeddb/keyrange-expected.txt
@@ -214,51 +214,61 @@ Expecting exception from IDBKeyRange.only({})
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The parameter is not a valid key.
Passing an invalid key into upperBound({})
Expecting exception from IDBKeyRange.upperBound({})
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The parameter is not a valid key.
Passing an invalid key into lowerBound({})
Expecting exception from IDBKeyRange.lowerBound({})
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The parameter is not a valid key.
Passing an invalid key into bound(null, {})
Expecting exception from IDBKeyRange.bound(null, {})
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The parameter is not a valid key.
Passing an invalid key into bound({},null)
Expecting exception from IDBKeyRange.bound({}, null)
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The parameter is not a valid key.
Passing an invalid key into bound({}, {})
Expecting exception from IDBKeyRange.bound({}, {})
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The parameter is not a valid key.
Lower key greater than higher key, bound(4, 3)
Expecting exception from IDBKeyRange.bound(4, 3)
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The lower key is greater than the upper key.
Equal keys, either of the bounds is open, bound(4, 4, true, false)
Expecting exception from IDBKeyRange.bound(4, 4, true, false)
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The lower key and upper key are equal and one of the bounds is open.
Equal keys, either of the bounds is open, bound(4, 4, false, true)
Expecting exception from IDBKeyRange.bound(4, 4, false, true)
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The lower key and upper key are equal and one of the bounds is open.
Equal keys, either of the bounds is open, bound(4, 4, true, true)
Expecting exception from IDBKeyRange.bound(4, 4, true, true)
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
+Exception message: The lower key and upper key are equal and one of the bounds is open.
Equal keys, none of the bounds is open, bound(4, 4, false, false)
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698