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

Side by Side Diff: LayoutTests/fast/events/resources/message-port-multi.js

Issue 1033443002: Revert of Have postMessage()s throw TypeError on failed arity checks. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
OLDNEW
1 if (window.testRunner) { 1 if (window.testRunner) {
2 testRunner.dumpAsText(); 2 testRunner.dumpAsText();
3 testRunner.waitUntilDone(); 3 testRunner.waitUntilDone();
4 } 4 }
5 5
6 description("This test checks the various use cases around sending multiple port s through MessagePort.postMessage"); 6 description("This test checks the various use cases around sending multiple port s through MessagePort.postMessage");
7 7
8 var channel = new MessageChannel(); 8 var channel = new MessageChannel();
9 var channel2 = new MessageChannel(); 9 var channel2 = new MessageChannel();
10 var channel3 = new MessageChannel(); 10 var channel3 = new MessageChannel();
11 var channel4 = new MessageChannel(); 11 var channel4 = new MessageChannel();
12 12
13 shouldThrow("channel.port1.postMessage()");
14
15 channel.port1.postMessage("noport"); 13 channel.port1.postMessage("noport");
16 channel.port1.postMessage("zero ports", []); 14 channel.port1.postMessage("zero ports", []);
17 channel.port1.postMessage("two ports", [channel2.port1, channel2.port2]); 15 channel.port1.postMessage("two ports", [channel2.port1, channel2.port2]);
18 16
19 // Now test various failure cases 17 // Now test various failure cases
20 shouldThrow('channel.port1.postMessage("same port", [channel.port1])', '"DataClo neError: Failed to execute \'postMessage\' on \'MessagePort\': Port at index 0 c ontains the source port."'); 18 shouldThrow('channel.port1.postMessage("same port", [channel.port1])', '"DataClo neError: Failed to execute \'postMessage\' on \'MessagePort\': Port at index 0 c ontains the source port."');
21 shouldThrow('channel.port1.postMessage("null port", [channel3.port1, null, chann el3.port2])', '"TypeError: Failed to execute \'postMessage\' on \'MessagePort\': Value at index 1 is an untransferable \'null\' value."'); 19 shouldThrow('channel.port1.postMessage("null port", [channel3.port1, null, chann el3.port2])', '"TypeError: Failed to execute \'postMessage\' on \'MessagePort\': Value at index 1 is an untransferable \'null\' value."');
22 shouldThrow('channel.port1.postMessage("notAPort", [channel3.port1, {}, channel3 .port2])', '"TypeError: Failed to execute \'postMessage\' on \'MessagePort\': Va lue at index 1 does not have a transferable type."'); 20 shouldThrow('channel.port1.postMessage("notAPort", [channel3.port1, {}, channel3 .port2])', '"TypeError: Failed to execute \'postMessage\' on \'MessagePort\': Va lue at index 1 does not have a transferable type."');
23 shouldThrow('channel.port1.postMessage("duplicate port", [channel3.port1, channe l3.port1])', '"DataCloneError: Failed to execute \'postMessage\' on \'MessagePor t\': Message port at index 1 is a duplicate of an earlier port."'); 21 shouldThrow('channel.port1.postMessage("duplicate port", [channel3.port1, channe l3.port1])', '"DataCloneError: Failed to execute \'postMessage\' on \'MessagePor t\': Message port at index 1 is a duplicate of an earlier port."');
24 // Should be OK to send channel3.port1 (should not have been disentangled by the previous failed calls). 22 // Should be OK to send channel3.port1 (should not have been disentangled by the previous failed calls).
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 } else if (event.data == "entangled ports") { 138 } else if (event.data == "entangled ports") {
141 if (event.ports.length == 2) 139 if (event.ports.length == 2)
142 testPassed("event.ports contains two ports when two ports re-sent af ter error"); 140 testPassed("event.ports contains two ports when two ports re-sent af ter error");
143 else 141 else
144 testFailed("event.ports contained " + event.ports.length + " when tw o ports re-sent after error"); 142 testFailed("event.ports contained " + event.ports.length + " when tw o ports re-sent after error");
145 } else if (event.data == "done") { 143 } else if (event.data == "done") {
146 testTransfers(); 144 testTransfers();
147 } else 145 } else
148 testFailed("Received unexpected message: " + event.data); 146 testFailed("Received unexpected message: " + event.data);
149 } 147 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698