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

Unified Diff: LayoutTests/storage/indexeddb/keypath-edges-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/keypath-edges-expected.txt
diff --git a/LayoutTests/storage/indexeddb/keypath-edges-expected.txt b/LayoutTests/storage/indexeddb/keypath-edges-expected.txt
index 11d7b811b763fc07709267221733ebe2efc1c7b4..4c1672c4b3159420f577f6eaa793db8a58a70deb 100644
--- a/LayoutTests/storage/indexeddb/keypath-edges-expected.txt
+++ b/LayoutTests/storage/indexeddb/keypath-edges-expected.txt
@@ -20,21 +20,21 @@ Expecting exception from store.put(null)
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
-Exception message: Evaluating the object store's key path did not yield a value.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': Evaluating the object store's key path did not yield a value.
Key path doesn't resolve to a value; should yield null, should throw DATA_ERR
Expecting exception from store.put({})
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
-Exception message: Evaluating the object store's key path did not yield a value.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': Evaluating the object store's key path did not yield a value.
Key path resolves to a value that is invalid key; should yield 'invalid' key, should throw DATA_ERR
Expecting exception from store.put({foo: null})
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
-Exception message: Evaluating the object store's key path yielded a value that is not a valid key.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': Evaluating the object store's key path yielded a value that is not a valid key.
Key path resolves to a value that is valid key; should yield 'string' key, should succeed
store.put({foo: 'zoo'})
@@ -49,14 +49,14 @@ Expecting exception from store.put(null)
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
-Exception message: A generated key could not be inserted into the value.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': A generated key could not be inserted into the value.
Key path doesn't resolve to a value; should yield null but insertion would fail, so put request should raise exception
Expecting exception from store.put('string')
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
-Exception message: A generated key could not be inserted into the value.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': A generated key could not be inserted into the value.
Key path doesn't resolve to a value; should yield null, key should be generated, put request should succeed
store.put({})
@@ -67,7 +67,7 @@ Expecting exception from store.put({foo: null})
PASS Exception was thrown.
PASS code is 0
PASS ename is 'DataError'
-Exception message: Evaluating the object store's key path yielded a value that is not a valid key.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': Evaluating the object store's key path yielded a value that is not a valid key.
Key path resolves to a value that is valid key; should yield 'string' key, should succeed
store.put({foo: 'zoo'})
« no previous file with comments | « LayoutTests/storage/indexeddb/keypath-basics-expected.txt ('k') | LayoutTests/storage/indexeddb/keyrange-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698