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

Unified Diff: LayoutTests/storage/indexeddb/noblobs-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/noblobs-expected.txt
diff --git a/LayoutTests/storage/indexeddb/noblobs-expected.txt b/LayoutTests/storage/indexeddb/noblobs-expected.txt
index a0f6f39be7311a6d0dd5128713028c4a19eb3d29..166fba6132c960b2d1b29941012e95ec298af823 100644
--- a/LayoutTests/storage/indexeddb/noblobs-expected.txt
+++ b/LayoutTests/storage/indexeddb/noblobs-expected.txt
@@ -22,14 +22,17 @@ store = transaction.objectStore('storeName')
Expecting exception from store.put(blob, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
+Exception message: An object could not be cloned.
Expecting exception from store.add(blob, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
+Exception message: An object could not be cloned.
request = store.openCursor()
cursor = request.result
Expecting exception from cursor.update(blob)
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
+Exception message: An object could not be cloned.
testFile():
file = fileInput.files[0]
@@ -40,14 +43,17 @@ store = transaction.objectStore('storeName')
Expecting exception from store.put(file, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
+Exception message: An object could not be cloned.
Expecting exception from store.add(file, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
+Exception message: An object could not be cloned.
request = store.openCursor()
cursor = request.result
Expecting exception from cursor.update(file)
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
+Exception message: An object could not be cloned.
testFileList():
filelist = fileInput.files
@@ -58,14 +64,17 @@ store = transaction.objectStore('storeName')
Expecting exception from store.put(filelist, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
+Exception message: An object could not be cloned.
Expecting exception from store.add(filelist, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
+Exception message: An object could not be cloned.
request = store.openCursor()
cursor = request.result
Expecting exception from cursor.update(filelist)
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
+Exception message: An object could not be cloned.
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698