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'}) |