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

Unified Diff: LayoutTests/storage/indexeddb/keyrange-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/keyrange-expected.txt
diff --git a/LayoutTests/storage/indexeddb/keyrange-expected.txt b/LayoutTests/storage/indexeddb/keyrange-expected.txt
index b3006e65593a7d1146d9f4588c323392c29ef027..58459212822a1a8e793b6ca40ec250c11c1e11a6 100644
--- a/LayoutTests/storage/indexeddb/keyrange-expected.txt
+++ b/LayoutTests/storage/indexeddb/keyrange-expected.txt
@@ -214,61 +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.
+Exception message: Failed to execute 'only' on 'IDBKeyRange': 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.
+Exception message: Failed to execute 'upperBound' on 'IDBKeyRange': 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.
+Exception message: Failed to execute 'lowerBound' on 'IDBKeyRange': 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.
+Exception message: Failed to execute 'bound' on 'IDBKeyRange': 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.
+Exception message: Failed to execute 'bound' on 'IDBKeyRange': 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.
+Exception message: Failed to execute 'bound' on 'IDBKeyRange': 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.
+Exception message: Failed to execute 'bound' on 'IDBKeyRange': 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.
+Exception message: Failed to execute 'bound' on 'IDBKeyRange': 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.
+Exception message: Failed to execute 'bound' on 'IDBKeyRange': 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.
+Exception message: Failed to execute 'bound' on 'IDBKeyRange': 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