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

Unified Diff: LayoutTests/storage/indexeddb/key-type-array-expected.txt

Issue 19107003: IndexedDB: Log exception messages (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months 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 3224525332edae2e72e469afd1777dab39276811..33116ae95902a05aef6e183491c2198e37c4ed3d 100644
--- a/LayoutTests/storage/indexeddb/key-type-array-expected.txt
+++ b/LayoutTests/storage/indexeddb/key-type-array-expected.txt
@@ -170,96 +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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
PASS indexedDB.cmp(makeArrayOfDepth(25), 0) is 1
PASS indexedDB.cmp(makeArrayOfDepth(250), 0) is 1
@@ -267,6 +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.
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698