| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 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 the RTCPeerConnection lifetime."); | 8 description("Tests the RTCPeerConnection lifetime."); |
| 9 | 9 |
| 10 var dc = null; | 10 var dc = null; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // This test times out if the Peer connection object is garbage collecte
d. | 61 // This test times out if the Peer connection object is garbage collecte
d. |
| 62 createPeerConnectionAndDataChannel(); | 62 createPeerConnectionAndDataChannel(); |
| 63 gc(); | 63 gc(); |
| 64 }); | 64 }); |
| 65 }); | 65 }); |
| 66 | 66 |
| 67 window.jsTestIsAsync = true; | 67 window.jsTestIsAsync = true; |
| 68 </script> | 68 </script> |
| 69 </body> | 69 </body> |
| 70 </html> | 70 </html> |
| OLD | NEW |