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

Unified Diff: LayoutTests/storage/indexeddb/invalid-keys-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/invalid-keys-expected.txt
diff --git a/LayoutTests/storage/indexeddb/invalid-keys-expected.txt b/LayoutTests/storage/indexeddb/invalid-keys-expected.txt
index 74073ccf86a614667b2abb3e74cb0c04a6233b01..06a45477c94b6eb4f338334058e61851113eaca7 100644
--- a/LayoutTests/storage/indexeddb/invalid-keys-expected.txt
+++ b/LayoutTests/storage/indexeddb/invalid-keys-expected.txt
@@ -13,82 +13,82 @@ Expecting exception from request = objectStore.put('value', void 0)
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
-Exception message: The object store uses out-of-line keys and has no key generator and the key parameter was not provided.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': The object store uses out-of-line keys and has no key generator and the key parameter was not provided.
Expecting exception from request = objectStore.put('value', 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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', (function() { return arguments; }()))
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', true)
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', false)
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', new Error)
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', function () {})
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', JSON)
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', Math)
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', NaN)
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', new Date(NaN))
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', {})
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', /regex/)
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', self)
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', self.document)
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
Expecting exception from request = objectStore.put('value', self.document.body)
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 'put' on 'IDBObjectStore': The parameter is not a valid key.
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698