OLD | NEW |
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 25 matching lines...) Expand all Loading... |
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.send(new Uint8Array(new SharedArrayBuffer(16))); threw exception TypeErr
or: Failed to execute 'send' on 'RTCDataChannel': The provided ArrayBufferView v
alue must not be shared.. | 39 PASS dc.send(new Uint8Array(new SharedArrayBuffer(16))); threw exception TypeErr
or: Failed to execute 'send' on 'RTCDataChannel': The provided ArrayBufferView v
alue must not be shared.. |
40 PASS dc_onclose was called | 40 PASS dc_onclose was called |
41 PASS dc.readyState is 'closed' | 41 PASS dc.readyState is 'closed' |
42 PASS successfullyParsed is true | 42 PASS successfullyParsed is true |
43 | 43 |
44 TEST COMPLETE | 44 TEST COMPLETE |
45 | 45 |
OLD | NEW |