OLD | NEW |
1 Tests the RTCPeerConnection constructor. | 1 Tests the RTCPeerConnection constructor. |
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 new webkitRTCPeerConnection(null); did not throw exception. | 6 PASS new webkitRTCPeerConnection(null); did not throw exception. |
7 PASS new webkitRTCPeerConnection(null, null); did not throw exception. | 7 PASS new webkitRTCPeerConnection(null, null); did not throw exception. |
8 PASS new webkitRTCPeerConnection(undefined); did not throw exception. | 8 PASS new webkitRTCPeerConnection(undefined); did not throw exception. |
9 PASS new webkitRTCPeerConnection(undefined, undefined); did not throw exception. | 9 PASS new webkitRTCPeerConnection(undefined, undefined); did not throw exception. |
10 PASS new webkitRTCPeerConnection(); threw exception TypeError: Failed to constru
ct 'RTCPeerConnection': 1 argument required, but only 0 present.. | 10 PASS new webkitRTCPeerConnection(); threw exception TypeError: Failed to constru
ct 'RTCPeerConnection': 1 argument required, but only 0 present.. |
(...skipping 27 matching lines...) Expand all Loading... |
38 PASS new webkitRTCPeerConnection(null, {optional:{valid_and_supported_1:0}}); th
rew exception TypeError: Failed to construct 'RTCPeerConnection': Malformed cons
traints object.. | 38 PASS new webkitRTCPeerConnection(null, {optional:{valid_and_supported_1:0}}); th
rew exception TypeError: Failed to construct 'RTCPeerConnection': Malformed cons
traints object.. |
39 PASS new webkitRTCPeerConnection(null, {optional:[{valid_and_supported_1:0,valid
_and_supported_2:0}]}); threw exception TypeError: Failed to construct 'RTCPeerC
onnection': Malformed constraints object.. | 39 PASS new webkitRTCPeerConnection(null, {optional:[{valid_and_supported_1:0,valid
_and_supported_2:0}]}); threw exception TypeError: Failed to construct 'RTCPeerC
onnection': Malformed constraints object.. |
40 PASS new webkitRTCPeerConnection(null, {optional:[{invalid:0}]}); threw exceptio
n NotSupportedError: Failed to construct 'RTCPeerConnection': Failed to initiali
ze native PeerConnection.. | 40 PASS new webkitRTCPeerConnection(null, {optional:[{invalid:0}]}); threw exceptio
n NotSupportedError: Failed to construct 'RTCPeerConnection': Failed to initiali
ze native PeerConnection.. |
41 PASS new webkitRTCPeerConnection(null, {valid_and_supported_1:1}); threw excepti
on TypeError: Failed to construct 'RTCPeerConnection': Malformed constraints obj
ect.. | 41 PASS new webkitRTCPeerConnection(null, {valid_and_supported_1:1}); threw excepti
on TypeError: Failed to construct 'RTCPeerConnection': Malformed constraints obj
ect.. |
42 PASS new webkitRTCPeerConnection(null, {valid_but_unsupported_1:1}); threw excep
tion TypeError: Failed to construct 'RTCPeerConnection': Malformed constraints o
bject.. | 42 PASS new webkitRTCPeerConnection(null, {valid_but_unsupported_1:1}); threw excep
tion TypeError: Failed to construct 'RTCPeerConnection': Malformed constraints o
bject.. |
43 PASS new webkitRTCPeerConnection(null, {valid_and_supported_2:1, mandatory:{vali
d_and_supported_1:1}}); threw exception TypeError: Failed to construct 'RTCPeerC
onnection': Malformed constraints object.. | 43 PASS new webkitRTCPeerConnection(null, {valid_and_supported_2:1, mandatory:{vali
d_and_supported_1:1}}); threw exception TypeError: Failed to construct 'RTCPeerC
onnection': Malformed constraints object.. |
44 PASS successfullyParsed is true | 44 PASS successfullyParsed is true |
45 | 45 |
46 TEST COMPLETE | 46 TEST COMPLETE |
47 | 47 |
OLD | NEW |