OLD | NEW |
1 Tests RTCPeerConnection remoteDescription. | 1 Tests RTCPeerConnection remoteDescription. |
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.setRemoteDescription().catch(expectedTypeError) did not throw exception. | 6 PASS pc.setRemoteDescription().catch(expectedTypeError) did not throw exception. |
7 PASS pc.setRemoteDescription(null).catch(expectedInvalidSessionDescription) did
not throw exception. | 7 PASS pc.setRemoteDescription(null).catch(expectedInvalidSessionDescription) did
not throw exception. |
8 PASS pc.setRemoteDescription(sessionDescription).then(requestSucceeded1, request
Failed1); did not throw exception. | 8 PASS pc.setRemoteDescription(sessionDescription).then(requestSucceeded1, request
Failed1); did not throw exception. |
9 PASS error.name is "TypeError" | 9 PASS error.name is "TypeError" |
10 PASS expectedTypeError was called. | 10 PASS expectedTypeError was called. |
11 PASS error.name is "InvalidAccessError" | 11 PASS error.name is "OperationError" |
12 PASS expectedInvalidSessionDescription was called. | 12 PASS expectedInvalidSessionDescription was called. |
13 PASS requestSucceeded was called. | 13 PASS requestSucceeded was called. |
14 PASS pc.setRemoteDescription(sessionDescription).then(requestSucceeded2, request
Failed2); did not throw exception. | 14 PASS pc.setRemoteDescription(sessionDescription).then(requestSucceeded2, request
Failed2); did not throw exception. |
15 PASS requestFailed was called. | 15 PASS requestFailed was called. |
16 PASS pc.remoteDescription.type is "answer" | 16 PASS pc.remoteDescription.type is "answer" |
17 PASS pc.remoteDescription.sdp is "remote" | 17 PASS pc.remoteDescription.sdp is "remote" |
18 PASS pc.remoteDescription.type is "answer" | 18 PASS pc.remoteDescription.type is "answer" |
19 PASS pc.remoteDescription.sdp is "remote" | 19 PASS pc.remoteDescription.sdp is "remote" |
20 PASS successfullyParsed is true | 20 PASS successfullyParsed is true |
21 | 21 |
22 TEST COMPLETE | 22 TEST COMPLETE |
23 | 23 |
OLD | NEW |