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

Unified Diff: LayoutTests/fast/mediastream/RTCPeerConnection-datachannel.html

Issue 16305017: Removes the old createDataChannel and starts to use the new one with WebRTCDataChannelInit (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/mediastream/RTCPeerConnection-datachannel-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/mediastream/RTCPeerConnection-datachannel.html
diff --git a/LayoutTests/fast/mediastream/RTCPeerConnection-datachannel.html b/LayoutTests/fast/mediastream/RTCPeerConnection-datachannel.html
index be4049e91fcfe974d8cc88c79420232ffa37161f..bd3717f7b4d9a8ad7ee8e99de3c04d3b8996df1f 100644
--- a/LayoutTests/fast/mediastream/RTCPeerConnection-datachannel.html
+++ b/LayoutTests/fast/mediastream/RTCPeerConnection-datachannel.html
@@ -86,9 +86,13 @@ shouldNotThrow('dc = pc.createDataChannel("label1");');
shouldBe("dc.reliable", "true");
shouldNotThrow('dc = pc.createDataChannel("label2", {});');
shouldBe("dc.reliable", "true");
-shouldNotThrow('dc = pc.createDataChannel("label3", {reliable:true});');
+shouldNotThrow('dc = pc.createDataChannel("label3", {ordered:true});');
shouldBe("dc.reliable", "true");
-shouldNotThrow('dc = pc.createDataChannel("label3", {reliable:false});');
+shouldNotThrow('dc = pc.createDataChannel("label3", {ordered:false});');
+shouldBe("dc.reliable", "false");
+shouldNotThrow('dc = pc.createDataChannel("label3", {maxRetransmits:0});');
+shouldBe("dc.reliable", "false");
+shouldNotThrow('dc = pc.createDataChannel("label3", {maxRetransmitTime:0});');
shouldBe("dc.reliable", "false");
pc = new webkitRTCPeerConnection(null, null);
« no previous file with comments | « no previous file | LayoutTests/fast/mediastream/RTCPeerConnection-datachannel-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698