| OLD | NEW |
| (Empty) |
| 1 Tests the RTCPeerConnection Ice functionality. | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | |
| 4 | |
| 5 | |
| 6 PASS testExecutionOrderClosedConnection() did not throw exception. | |
| 7 PASS pc = new webkitRTCPeerConnection(null, null); did not throw exception. | |
| 8 PASS error.name is "InvalidStateError" | |
| 9 PASS error.toString() is "InvalidStateError: The RTCPeerConnection's signalingSt
ate is 'closed'." | |
| 10 PASS events is [1,2,3] | |
| 11 PASS iceConnectionState is completed | |
| 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. | |
| 14 PASS pc.addIceCandidate(iceCandidate, null, unexpectedCallback).catch(expectedTy
peError); did not throw exception. | |
| 15 PASS pc.addIceCandidate(iceCandidate, unexpectedCallback, null).catch(expectedTy
peError); did not throw exception. | |
| 16 PASS pc.addIceCandidate(iceCandidate, addIceCandidateSuccess1, unexpectedCallbac
k); did not throw exception. | |
| 17 PASS error.name is "TypeError" | |
| 18 PASS expectedTypeError was called. | |
| 19 PASS error.name is "TypeError" | |
| 20 PASS expectedTypeError was called. | |
| 21 PASS error.name is "TypeError" | |
| 22 PASS expectedTypeError 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. | |
| 32 PASS iceConnectionState is closed. | |
| 33 PASS successfullyParsed is true | |
| 34 | |
| 35 TEST COMPLETE | |
| 36 | |
| OLD | NEW |