| OLD | NEW |
| 1 Tests the RTCPeerConnection Ice functionality. | 1 Tests the RTCPeerConnection Ice functionality. |
| 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 testExecutionOrderClosedConnection() did not throw exception. | 6 PASS testExecutionOrderClosedConnection() did not throw exception. |
| 7 PASS pc = new webkitRTCPeerConnection(null, null); did not throw exception. | 7 PASS pc = new webkitRTCPeerConnection(null, null); did not throw exception. |
| 8 PASS error.name is "InvalidStateError" | 8 PASS error.name is "InvalidStateError" |
| 9 PASS error.toString() is "InvalidStateError: The RTCPeerConnection's signalingSt
ate is 'closed'." | 9 PASS error.toString() is "InvalidStateError: The RTCPeerConnection's signalingSt
ate is 'closed'." |
| 10 PASS events is [1,2,3] | 10 PASS events is [1,2,3] |
| 11 PASS iceConnectionState is completed | 11 PASS iceConnectionState is completed |
| 12 PASS pc.addIceCandidate(null, addIceCandidateSuccess, unexpectedCallback).catch(
expectedTypeError); did not throw exception. | 12 PASS pc.addIceCandidate(null, unexpectedCallback, unexpectedCallback).catch(expe
ctedTypeError); did not throw exception. |
| 13 PASS pc.addIceCandidate({candidate: "candidate"}, unexpectedCallback, unexpected
Callback).catch(expectedTypeError); did not throw exception. |
| 13 PASS pc.addIceCandidate(iceCandidate, null, unexpectedCallback).catch(expectedTy
peError); did not throw exception. | 14 PASS pc.addIceCandidate(iceCandidate, null, unexpectedCallback).catch(expectedTy
peError); did not throw exception. |
| 14 PASS pc.addIceCandidate(iceCandidate, addIceCandidateSuccess, null).catch(expect
edTypeError); did not throw exception. | 15 PASS pc.addIceCandidate(iceCandidate, unexpectedCallback, null).catch(expectedTy
peError); did not throw exception. |
| 15 PASS pc.addIceCandidate(iceCandidate, addIceCandidateSuccess, unexpectedCallback
); did not throw exception. | 16 PASS pc.addIceCandidate(iceCandidate, addIceCandidateSuccess1, unexpectedCallbac
k); did not throw exception. |
| 16 PASS error.name is "TypeError" | 17 PASS error.name is "TypeError" |
| 17 PASS expectedTypeError was called. | 18 PASS expectedTypeError was called. |
| 18 PASS error.name is "TypeError" | 19 PASS error.name is "TypeError" |
| 19 PASS expectedTypeError was called. | 20 PASS expectedTypeError was called. |
| 20 PASS error.name is "TypeError" | 21 PASS error.name is "TypeError" |
| 21 PASS expectedTypeError was called. | 22 PASS expectedTypeError was called. |
| 22 PASS addIceCandidateSuccess was called. | 23 PASS error.name is "TypeError" |
| 24 PASS expectedTypeError was called. |
| 25 PASS addIceCandidateSuccess1 was called. |
| 26 PASS pc.addIceCandidate({candidate: "candidate", sdpMid: 0}, addIceCandidateSucc
ess2, unexpectedCallback); did not throw exception. |
| 27 PASS addIceCandidateSuccess2 was called. |
| 28 PASS pc.addIceCandidate({candidate: "candidate", sdpMLineIndex: 0}, addIceCandid
ateSuccess3, unexpectedCallback); did not throw exception. |
| 29 PASS addIceCandidateSuccess3 was called. |
| 30 PASS pc.addIceCandidate({candidate: "candidate", sdpMid: 0, sdpMLineIndex: 0}, a
ddIceCandidateSuccess4, unexpectedCallback); did not throw exception. |
| 31 PASS addIceCandidateSuccess4 was called. |
| 23 PASS iceConnectionState is closed. | 32 PASS iceConnectionState is closed. |
| 24 PASS successfullyParsed is true | 33 PASS successfullyParsed is true |
| 25 | 34 |
| 26 TEST COMPLETE | 35 TEST COMPLETE |
| 27 | 36 |
| OLD | NEW |