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

Side by Side Diff: LayoutTests/fast/mediastream/RTCPeerConnection-datachannel-blob-expected.txt

Issue 268923002: Add support of sending blob data for RTCDataChannel Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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
(Empty)
1 Tests RTCDataChannel sending blob data.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS pc is connected
7 PASS dc = pc.createDataChannel("label"); did not throw exception.
8 PASS dc.readyState is 'connecting'
9 PASS dc.binaryType is "blob"
10 PASS pc_ondatachannel was called
11 PASS dc_onopen was called
12 PASS dc.readyState is 'open'
13 PASS dc.label is 'label'
14 PASS dc.send(blob); did not throw exception.
15 PASS dc_onmessage_blob was called
16 PASS data instanceof window.Blob is true
17 PASS Blob data was reveived correctly.
18 PASS Got fileSystem
19 PASS File created.
20 PASS fileEntry.isFile is true
21 PASS Wrote to file.
22 PASS Got File object successfully.
23 PASS dc.send(fileObject); did not throw exception.
24 PASS dc_onmessage_file was called
25 PASS data instanceof window.Blob is true
26 PASS File data is received correctly.
27 PASS Deleting the file.
28 PASS dc_onclose was called
29 PASS dc.readyState is 'closed'
30 PASS successfullyParsed is true
31
32 TEST COMPLETE
33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698