OLD | NEW |
1 <html> | 1 <html> |
2 <script> | 2 <script> |
3 function runTest() { | 3 function runTest() { |
4 if (window.testRunner) | 4 if (window.testRunner) |
5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
6 | 6 |
7 if (window.internals) | 7 if (window.internals) |
8 window.internals.settings.setMediaEnabled(false); | 8 window.internals.settings.setMediaEnabled(false); |
9 | 9 |
10 var audioElement = document.createElement("audio"); | 10 var audioElement = document.createElement("audio"); |
11 } | 11 } |
12 </script> | 12 </script> |
13 <body onload="runTest()"> | 13 <body onload="runTest()"> |
14 The test passes if it doesn't crash. | 14 The test passes if it doesn't crash. |
15 </body> | 15 </body> |
16 </html> | 16 </html> |
OLD | NEW |