OLD | NEW |
1 | 1 |
2 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 2 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <script src="../js/resources/js-test-pre.js"></script> | 5 <script src="../js/resources/js-test-pre.js"></script> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <script> | 8 <script> |
9 description("Tests the RTCPeerConnection stats interface."); | 9 description("Tests the RTCPeerConnection stats interface."); |
10 | 10 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 finishJSTest(); | 79 finishJSTest(); |
80 } | 80 } |
81 | 81 |
82 var startTime = new Date().getTime(); | 82 var startTime = new Date().getTime(); |
83 shouldNotThrow('pc = new webkitRTCPeerConnection(null)'); | 83 shouldNotThrow('pc = new webkitRTCPeerConnection(null)'); |
84 shouldNotThrow('pc.getStats(statsHandler1)'); | 84 shouldNotThrow('pc.getStats(statsHandler1)'); |
85 | 85 |
86 window.jsTestIsAsync = true; | 86 window.jsTestIsAsync = true; |
87 window.successfullyParsed = true; | 87 window.successfullyParsed = true; |
88 </script> | 88 </script> |
89 <script src="../js/resources/js-test-post.js"></script> | |
90 </body> | 89 </body> |
91 </html> | 90 </html> |
OLD | NEW |