resource-selection-invoke-audio-constructor.html (401B)
1 <!doctype html> 2 <title>invoking resource selection with new Audio(src)</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <div id=log></div> 6 <script> 7 async_test(function(t) { 8 var a = new Audio(''); 9 a.onloadstart = t.step_func(function() { t.done(); }); 10 window.onload = t.step_func(function() { assert_unreached(); }); 11 }); 12 </script>