bug 1184801 crashtest for AnalyserNode with channels and small fftSize

--HG--
extra : rebase_source : 6a85e33b768c37df44cc7eb3229fc716b3d11d10
This commit is contained in:
Karl Tomlinson 2015-07-21 15:21:38 +12:00
Родитель 15660ce0a3
Коммит 1d1c742d3b
2 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html class="reftest-wait">
<script>
var context = new window.OfflineAudioContext(1, 256, 48000);
var analyser = context.createAnalyser();
analyser.channelCount = 2;
analyser.channelCountMode = "explicit";
analyser.fftSize = 32;
var source = context.createOscillator();
source.connect(analyser);
source.start(0);
context.startRendering().
then(function() {
document.documentElement.removeAttribute("class");
});
</script>

Просмотреть файл

@ -69,6 +69,7 @@ load 986901.html
load 990794.html
load 1015662.html
skip-if(Android||B2G) test-pref(media.navigator.permission.disabled,true) load 1028458.html # bug 1048863
load analyser-channels-1.html
load buffer-source-ended-1.html
load doppler-1.html
HTTP load media-element-source-seek-1.html