test_bug845960.html (478B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <title>Crashtest for bug 845960</title> 5 <script src="/tests/SimpleTest/SimpleTest.js"></script> 6 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> 7 </head> 8 <body> 9 <pre id="test"> 10 <script class="testbody" type="text/javascript"> 11 12 (new AudioContext()).decodeAudioData(new ArrayBuffer(0), function() {}); 13 ok(true, "Should not crash when the optional failure callback is not specified"); 14 15 </script> 16 </pre> 17 </body> 18 </html>