gecko/content/media/test/crashtests/875596.html
Ehsan Akhgari 0ab611361f Bug 875596 - Properly handle AudioParam SetCurve automation events with a 0 duration; r=roc
--HG--
rename : content/media/webaudio/test/test_audioParamSetCurveAtTime.html => content/media/webaudio/test/test_audioParamSetCurveAtTimeZeroDuration.html
2013-05-24 13:19:47 -04:00

12 lines
417 B
HTML

<script>
try { o1 = new AudioContext(); } catch(e) { }
try { o6 = o1.createGain(); } catch(e) { }
try { o8 = o1.createBufferSource(); } catch(e) { }
try { o6.gain.setValueCurveAtTime(Float32Array(7), 0, 0) } catch(e) { }
try { o8.connect(o6, 0, 0) } catch(e) { }
try { o8.buffer = function() {
o19 = o1.createBuffer(1, 1, 76309);
for(var i=0; i<1; ++i) { }
return o19;
}(); } catch(e) { }
</script>