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

Unified Diff: LayoutTests/storage/indexeddb/key-type-array-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/key-type-array-expected.txt
diff --git a/LayoutTests/storage/indexeddb/key-type-array-expected.txt b/LayoutTests/storage/indexeddb/key-type-array-expected.txt
index 33116ae95902a05aef6e183491c2198e37c4ed3d..20ad13092ea37a6266c85d9df3fbee227bd4eb8a 100644
--- a/LayoutTests/storage/indexeddb/key-type-array-expected.txt
+++ b/LayoutTests/storage/indexeddb/key-type-array-expected.txt
@@ -170,112 +170,112 @@ Expecting exception from store.put('value', [ void 0 ]);
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.
testing invalid array key: [ true ]
Expecting exception from store.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.
testing invalid array key: [ false ]
Expecting exception from store.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.
testing invalid array key: [ NaN ]
Expecting exception from store.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.
testing invalid array key: [ null ]
Expecting exception from store.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.
testing invalid array key: [ {} ]
Expecting exception from store.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.
testing invalid array key: [ function () {} ]
Expecting exception from store.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.
testing invalid array key: [ /regex/ ]
Expecting exception from store.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.
testing invalid array key: [ self ]
Expecting exception from store.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.
testing invalid array key: [ self.document ]
Expecting exception from store.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.
testing invalid array key: [ self.document.body ]
Expecting exception from store.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.
testing invalid array key: cyclic_array
Expecting exception from store.put('value', cyclic_array);
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.
testing invalid array key: cyclic_array2
Expecting exception from store.put('value', cyclic_array2);
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.
testing invalid array key: cyclic_array3
Expecting exception from store.put('value', cyclic_array3);
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.
testing invalid array key: cyclic_array4
Expecting exception from store.put('value', cyclic_array4);
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.
testing invalid array key: Array(1000)
Expecting exception from store.put('value', Array(1000));
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 indexedDB.cmp(makeArrayOfDepth(25), 0) is 1
PASS indexedDB.cmp(makeArrayOfDepth(250), 0) is 1
@@ -283,7 +283,7 @@ Expecting exception from indexedDB.cmp(makeArrayOfDepth(2500), 0)
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 'cmp' on 'IDBFactory': The parameter is not a valid key.
PASS successfullyParsed is true
« no previous file with comments | « LayoutTests/storage/indexeddb/invalid-keys-expected.txt ('k') | LayoutTests/storage/indexeddb/keypath-arrays-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698