Index: LayoutTests/fast/dom/Window/window-postmessage-clone-expected.txt |
diff --git a/LayoutTests/fast/dom/Window/window-postmessage-clone-expected.txt b/LayoutTests/fast/dom/Window/window-postmessage-clone-expected.txt |
index a428d4e95a67dff5b7bb40ed6db601b9c4caf41a..f1bd7fa78745be2338ee1851f72a021b2141e9cb 100644 |
--- a/LayoutTests/fast/dom/Window/window-postmessage-clone-expected.txt |
+++ b/LayoutTests/fast/dom/Window/window-postmessage-clone-expected.txt |
@@ -1,8 +1,10 @@ |
Tests that we clone object hierarchies |
-PASS: 'postMessage((function(){}))' threw DataCloneError: An object could not be cloned. |
-PASS: 'postMessage(var x = 0; try { eval("badref"); } catch(e) { x = e; } x)' threw DataCloneError: An object could not be cloned. |
-PASS: 'postMessage(window)' threw DataCloneError: An object could not be cloned. |
+PASS: 'postMessage((function(){}))' threw DataCloneError: Failed to execute 'postMessage' on 'Window': An object could not be cloned. |
+PASS: 'postMessage(var x = 0; try { eval("badref"); } catch(e) { x = e; } x)' threw DataCloneError: Failed to execute 'postMessage' on 'Window': An object could not be cloned. |
+PASS: 'postMessage(arrayBuffer)' threw DataCloneError: Failed to execute 'postMessage' on 'Window': An ArrayBuffer is neutered and could not be cloned. |
+PASS: 'postMessage(uint8Array)' threw DataCloneError: Failed to execute 'postMessage' on 'Window': An ArrayBuffer is neutered and could not be cloned. |
+PASS: 'postMessage(window)' threw DataCloneError: Failed to execute 'postMessage' on 'Window': An object could not be cloned. |
PASS: 'postMessage(({get a() { throw "x" }}))' threw x |
PASS: 'postMessage((function() {return {get a() { throw "accessor-exn"; }};})())' threw accessor-exn |
PASS: 'postMessage((function() {var obja = {get p() { throw "accessor-exn"; }}; return {get a() { return obja; }};})())' threw accessor-exn |
@@ -27,6 +29,8 @@ PASS: eventData is a,a,b,a,b of type object |
PASS: eventData is a,a,b,[object Object] of type object |
PASS: eventData is 1,2,3 of type object |
PASS: eventData is ,,1 of type object |
+PASS: eventData is data of type string |
+PASS: eventData is data of type string |
PASS: eventData is 2009-02-13T23:31:30.000Z of type object |
PASS: eventData is [object Object] of type object |
PASS: eventData is true of type object |