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. |