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 <!-- TODO(guidou): Convert test to testharness.js. crbug.com/614963 --> | 5 <!-- TODO(guidou): Convert test to testharness.js. crbug.com/614963 --> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <script> | 8 <script> |
9 description("Tests the RTCPeerConnection Ice functionality."); | 9 description("Tests the RTCPeerConnection Ice functionality."); |
10 | 10 |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 92 |
93 shouldNotThrow('testExecutionOrderClosedConnection()'); | 93 shouldNotThrow('testExecutionOrderClosedConnection()'); |
94 shouldNotThrow('pc = new webkitRTCPeerConnection(null, null);'); | 94 shouldNotThrow('pc = new webkitRTCPeerConnection(null, null);'); |
95 pc.oniceconnectionstatechange = onIceChange1; | 95 pc.oniceconnectionstatechange = onIceChange1; |
96 | 96 |
97 window.jsTestIsAsync = true; | 97 window.jsTestIsAsync = true; |
98 window.successfullyParsed = true; | 98 window.successfullyParsed = true; |
99 </script> | 99 </script> |
100 </body> | 100 </body> |
101 </html> | 101 </html> |
OLD | NEW |