1 Tests the JSEP PeerConnection related constructors.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS typeof webkitRTCPeerConnection === 'function' is true
7 PASS typeof RTCSessionDescription === 'function' is true
8 PASS typeof RTCIceCandidate === 'function' is true
9 PASS webkitRTCPeerConnection() threw exception TypeError: Failed to construct 'RTCPeerConnection': Please use the 'new' operator, this DOM object constructor cannot be called as a function..
10 PASS RTCSessionDescription() threw exception TypeError: Failed to construct 'RTCSessionDescription': Please use the 'new' operator, this DOM object constructor cannot be called as a function..
11 PASS RTCIceCandidate() threw exception TypeError: Failed to construct 'RTCIceCandidate': Please use the 'new' operator, this DOM object constructor cannot be called as a function..
12 PASS new webkitRTCPeerConnection({iceServers:[{url:'stun://foobar.com:12345'}]}, null); did not throw exception.
13 PASS new RTCSessionDescription({type:'offer',sdp:'foobar'}); did not throw exception.
14 PASS new RTCIceCandidate({candidate:'foo'}); did not throw exception.
15 PASS successfullyParsed is true