OLD | NEW |
1 Tests RTCPeerConnection localDescription. | 1 Tests RTCPeerConnection localDescription. |
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 pc.setLocalDescription(null) threw exception TypeError: Failed to execute '
setLocalDescription' on 'RTCPeerConnection': parameter 1 is not of type 'RTCSess
ionDescription'.. | 6 PASS pc.setLocalDescription().catch(expectedTypeError) did not throw exception. |
| 7 PASS pc.setLocalDescription(null).catch(expectedInvalidSessionDescription) did n
ot throw exception. |
7 PASS pc.setLocalDescription(sessionDescription, requestSucceeded1, requestFailed
1); did not throw exception. | 8 PASS pc.setLocalDescription(sessionDescription, requestSucceeded1, requestFailed
1); did not throw exception. |
| 9 PASS errorReason.name is "TypeError" |
| 10 PASS expectedTypeError was called. |
| 11 PASS expectedInvalidSessionDescription was called. |
8 PASS requestSucceeded was called. | 12 PASS requestSucceeded was called. |
9 PASS pc.setLocalDescription(sessionDescription, requestSucceeded2, requestFailed
2); did not throw exception. | 13 PASS pc.setLocalDescription(sessionDescription, requestSucceeded2, requestFailed
2); did not throw exception. |
10 PASS requestFailed was called. | 14 PASS requestFailed was called. |
11 PASS pc.localDescription.type is "offer" | 15 PASS pc.localDescription.type is "offer" |
12 PASS pc.localDescription.sdp is "local" | 16 PASS pc.localDescription.sdp is "local" |
13 PASS pc.localDescription.type is "offer" | 17 PASS pc.localDescription.type is "offer" |
14 PASS pc.localDescription.sdp is "local" | 18 PASS pc.localDescription.sdp is "local" |
15 PASS successfullyParsed is true | 19 PASS successfullyParsed is true |
16 | 20 |
17 TEST COMPLETE | 21 TEST COMPLETE |
18 | 22 |
OLD | NEW |