| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <script> | 7 <script> |
| 8 description("Tests RTCPeerConnection remoteDescription."); | 8 description("Tests RTCPeerConnection remoteDescription."); |
| 9 | 9 |
| 10 var pc = null; | 10 var pc = null; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 shouldNotThrow('pc.setRemoteDescription().catch(expectedTypeError)'); | 75 shouldNotThrow('pc.setRemoteDescription().catch(expectedTypeError)'); |
| 76 shouldNotThrow('pc.setRemoteDescription(null).catch(expectedInvalidSessionDescri
ption)'); | 76 shouldNotThrow('pc.setRemoteDescription(null).catch(expectedInvalidSessionDescri
ption)'); |
| 77 var sessionDescription = new RTCSessionDescription({type:"answer", sdp:"remote"}
); | 77 var sessionDescription = new RTCSessionDescription({type:"answer", sdp:"remote"}
); |
| 78 shouldNotThrow('pc.setRemoteDescription(sessionDescription, requestSucceeded1, u
nexpectedCallback);'); | 78 shouldNotThrow('pc.setRemoteDescription(sessionDescription, requestSucceeded1, u
nexpectedCallback);'); |
| 79 | 79 |
| 80 window.jsTestIsAsync = true; | 80 window.jsTestIsAsync = true; |
| 81 window.successfullyParsed = true; | 81 window.successfullyParsed = true; |
| 82 </script> | 82 </script> |
| 83 </body> | 83 </body> |
| 84 </html> | 84 </html> |
| OLD | NEW |