diff --git a/content/media/webaudio/test/test_mediaDecoding.html b/content/media/webaudio/test/test_mediaDecoding.html index 24c2ebf9611..fb97253e0c5 100644 --- a/content/media/webaudio/test/test_mediaDecoding.html +++ b/content/media/webaudio/test/test_mediaDecoding.html @@ -280,6 +280,8 @@ function checkResampledBuffer(buffer, test, callback) { var resampled = cx.createBufferSource(); resampled.buffer = buffer; resampled.start(); + // This stop should do nothing, but it tests for bug 937475 + resampled.stop(test.frames / cx.sampleRate); resampled.connect(cx.destination); cx.oncomplete = function(e) { ok(!bufferIsSilent(e.renderedBuffer), "Expect buffer not silent");