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

Unified Diff: third_party/WebKit/LayoutTests/storage/indexeddb/structured-clone-expected.txt

Issue 2517813002: Enable V8BasedStructuredClone by default. (Closed)
Patch Set: . Created 4 years, 1 month 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: third_party/WebKit/LayoutTests/storage/indexeddb/structured-clone-expected.txt
diff --git a/third_party/WebKit/LayoutTests/storage/indexeddb/structured-clone-expected.txt b/third_party/WebKit/LayoutTests/storage/indexeddb/structured-clone-expected.txt
index 70bdc0602ac99f17da3e7e2b775f6ba3a5cb95eb..2dbdd5312c329587a2a62afcbe9c722b0b6d7457 100644
--- a/third_party/WebKit/LayoutTests/storage/indexeddb/structured-clone-expected.txt
+++ b/third_party/WebKit/LayoutTests/storage/indexeddb/structured-clone-expected.txt
@@ -838,25 +838,27 @@ Other JavaScript object types:
Expecting exception from store.put(new Error, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
-Exception message: Failed to execute 'put' on 'IDBObjectStore': An object could not be cloned.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': Error could not be cloned.
Expecting exception from store.put(new Function, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
-Exception message: Failed to execute 'put' on 'IDBObjectStore': An object could not be cloned.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': function anonymous() {
+
+} could not be cloned.
Other host object types:
Expecting exception from store.put(self, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
-Exception message: Failed to execute 'put' on 'IDBObjectStore': An object could not be cloned.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': #<Window> could not be cloned.
Expecting exception from store.put(document, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
-Exception message: Failed to execute 'put' on 'IDBObjectStore': An object could not be cloned.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': HTMLDocument object could not be cloned.
Expecting exception from store.put(document.body, 'key')
PASS Exception was thrown.
PASS code is DOMException.DATA_CLONE_ERR
-Exception message: Failed to execute 'put' on 'IDBObjectStore': An object could not be cloned.
+Exception message: Failed to execute 'put' on 'IDBObjectStore': HTMLBodyElement object could not be cloned.
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698