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

Side by Side Diff: LayoutTests/fast/rtcpeerconnection/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 unified diff | Download patch
OLDNEW
1 Tests RTCDataChannel. 1 Tests RTCDataChannel.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS dc = pc.createDataChannel("label1"); did not throw exception. 6 PASS dc = pc.createDataChannel("label1"); did not throw exception.
7 PASS dc.reliable is true 7 PASS dc.reliable is true
8 PASS dc = pc.createDataChannel("label2", {}); did not throw exception. 8 PASS dc = pc.createDataChannel("label2", {}); did not throw exception.
9 PASS dc.reliable is true 9 PASS dc.reliable is true
10 PASS dc = pc.createDataChannel("label3", {ordered:true}); did not throw exceptio n. 10 PASS dc = pc.createDataChannel("label3", {ordered:true}); did not throw exceptio n.
(...skipping 24 matching lines...) Expand all
35 PASS dc_onmessage_dataview was called 35 PASS dc_onmessage_dataview was called
36 PASS data.byteLength is 10 36 PASS data.byteLength is 10
37 PASS array[0] is 1 37 PASS array[0] is 1
38 PASS array[9] is 10 38 PASS array[9] is 10
39 PASS dc_onclose was called 39 PASS dc_onclose was called
40 PASS dc.readyState is 'closed' 40 PASS dc.readyState is 'closed'
41 PASS successfullyParsed is true 41 PASS successfullyParsed is true
42 42
43 TEST COMPLETE 43 TEST COMPLETE
44 44
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698