OLD | NEW |
(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 |
OLD | NEW |