OLD | NEW |
| 1 CONSOLE WARNING: Unknown constraint named invalid rejected |
| 2 CONSOLE WARNING: Unknown constraint named valid_but_unsupported_1 rejected |
| 3 CONSOLE WARNING: Unknown constraint named valid_but_unsupported_1 rejected |
1 Tests the RTCPeerConnection constructor. | 4 Tests the RTCPeerConnection constructor. |
2 | 5 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 6 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 7 |
5 | 8 |
6 PASS new webkitRTCPeerConnection(null); did not throw exception. | 9 PASS new webkitRTCPeerConnection(null); did not throw exception. |
7 PASS new webkitRTCPeerConnection(undefined); did not throw exception. | 10 PASS new webkitRTCPeerConnection(undefined); did not throw exception. |
8 PASS new webkitRTCPeerConnection(); threw exception TypeError: Failed to constru
ct 'RTCPeerConnection': 1 argument required, but only 0 present.. | 11 PASS new webkitRTCPeerConnection(); threw exception TypeError: Failed to constru
ct 'RTCPeerConnection': 1 argument required, but only 0 present.. |
9 PASS new webkitRTCPeerConnection(''); threw exception TypeError: Failed to const
ruct 'RTCPeerConnection': parameter 1 ('rtcConfiguration') is not an object.. | 12 PASS new webkitRTCPeerConnection(''); threw exception TypeError: Failed to const
ruct 'RTCPeerConnection': parameter 1 ('rtcConfiguration') is not an object.. |
10 PASS new webkitRTCPeerConnection({iceServers:[]}); did not throw exception. | 13 PASS new webkitRTCPeerConnection({iceServers:[]}); did not throw exception. |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 PASS new webkitRTCPeerConnection({iceServers:[], certificates:null}); did not th
row exception. | 51 PASS new webkitRTCPeerConnection({iceServers:[], certificates:null}); did not th
row exception. |
49 PASS new webkitRTCPeerConnection({iceServers:[], certificates:[]}); did not thro
w exception. | 52 PASS new webkitRTCPeerConnection({iceServers:[], certificates:[]}); did not thro
w exception. |
50 PASS new webkitRTCPeerConnection({iceServers:[], certificates:[null]}); threw ex
ception TypeError: Failed to construct 'RTCPeerConnection': Malformed sequence<R
TCCertificate>. | 53 PASS new webkitRTCPeerConnection({iceServers:[], certificates:[null]}); threw ex
ception TypeError: Failed to construct 'RTCPeerConnection': Malformed sequence<R
TCCertificate>. |
51 PASS new webkitRTCPeerConnection({iceServers:[], certificates:[1337]}); threw ex
ception TypeError: Failed to construct 'RTCPeerConnection': Malformed sequence<R
TCCertificate>. | 54 PASS new webkitRTCPeerConnection({iceServers:[], certificates:[1337]}); threw ex
ception TypeError: Failed to construct 'RTCPeerConnection': Malformed sequence<R
TCCertificate>. |
52 PASS new webkitRTCPeerConnection({iceServers:[], certificates:[certRSA]}, null);
did not throw exception. | 55 PASS new webkitRTCPeerConnection({iceServers:[], certificates:[certRSA]}, null);
did not throw exception. |
53 PASS new webkitRTCPeerConnection({iceServers:[], certificates:[certECDSA]}, null
); did not throw exception. | 56 PASS new webkitRTCPeerConnection({iceServers:[], certificates:[certECDSA]}, null
); did not throw exception. |
54 PASS successfullyParsed is true | 57 PASS successfullyParsed is true |
55 | 58 |
56 TEST COMPLETE | 59 TEST COMPLETE |
57 | 60 |
OLD | NEW |