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

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

Issue 650063002: Move MediaStream and MediaStreamTrack implementation from modules/mediastream to core/mediastream. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased. Created 6 years, 2 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
deleted file mode 100644
index c8387e3551d7d0e846eb8f00faf93cb33d6d17b2..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/mediastream/RTCPeerConnection-datachannel-expected.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-Tests RTCDataChannel.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-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", {ordered:true}); did not throw exception.
-PASS dc.reliable is true
-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.
-PASS dc.readyState is 'connecting'
-PASS pc_ondatachannel was called
-PASS dc_onopen was called
-PASS dc.readyState is 'open'
-PASS dc.label is 'label'
-PASS dc.send('xyzzy'); did not throw exception.
-PASS dc_onmessage_string was called
-PASS data is 'xyzzy'
-PASS dc.send(buffer); did not throw exception.
-PASS dc_onmessage_arraybuffer was called
-PASS data.byteLength is 2
-PASS array[0] is 17
-PASS array[1] is 19
-PASS data.byteLength is 12
-PASS dc.send(shrunkView); did not throw exception.
-PASS dc_onmessage_dataview was called
-PASS data.byteLength is 10
-PASS array[0] is 1
-PASS array[9] is 10
-PASS dc_onclose was called
-PASS dc.readyState is 'closed'
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698