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

Unified Diff: LayoutTests/fast/mediastream/RTCPeerConnection-datachannel-expected.txt

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
Index: LayoutTests/fast/mediastream/RTCPeerConnection-datachannel-expected.txt
diff --git a/LayoutTests/fast/mediastream/RTCPeerConnection-datachannel-expected.txt b/LayoutTests/fast/mediastream/RTCPeerConnection-datachannel-expected.txt
index 67be8817d0935e1733f182109d4845397b9b76da..8d0f53e6e774958630dfcd12a4088b5fc7860a26 100644
--- a/LayoutTests/fast/mediastream/RTCPeerConnection-datachannel-expected.txt
+++ b/LayoutTests/fast/mediastream/RTCPeerConnection-datachannel-expected.txt
@@ -7,9 +7,13 @@ PASS dc = pc.createDataChannel("label1"); did not throw exception.
PASS dc.reliable is true
PASS dc = pc.createDataChannel("label2", {}); did not throw exception.
PASS dc.reliable is true
-PASS dc = pc.createDataChannel("label3", {reliable:true}); did not throw exception.
+PASS dc = pc.createDataChannel("label3", {ordered:true}); did not throw exception.
PASS dc.reliable is true
-PASS dc = pc.createDataChannel("label3", {reliable:false}); did not throw exception.
+PASS dc = pc.createDataChannel("label3", {ordered:false}); did not throw exception.
+PASS dc.reliable is false
+PASS dc = pc.createDataChannel("label3", {maxRetransmits:0}); did not throw exception.
+PASS dc.reliable is false
+PASS dc = pc.createDataChannel("label3", {maxRetransmitTime:0}); did not throw exception.
PASS dc.reliable is false
PASS pc is connected
PASS dc = pc.createDataChannel("label"); did not throw exception.

Powered by Google App Engine
This is Rietveld 408576698