Test case for bug 880384

--HG--
extra : rebase_source : a77b7f0c32555d645c1903164e0a7740ac61ca19
This commit is contained in:
Ehsan Akhgari 2013-06-07 11:22:46 -04:00
parent 7396ea9682
commit 021d3cb4b8
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<script>
o1 = new window.AudioContext(3, 256, 44100);
o2 = o1.createBufferSource();
o3 = o1.createConvolver();
o3.normalize = false;
o3.buffer = function(){var buffer = o1.createBuffer(2, 1051, o1.sampleRate);for(var c=0; c<2; c++) {for(var i=0; i<1051; i++) {buffer.getChannelData(c)[i] = 1;}}return buffer;}();
o3.buffer = function(){var buffer = o1.createBuffer(2, 1112, o1.sampleRate);for(var c=0; c<2; c++) {for(var i=0; i<1112; i++) {buffer.getChannelData(c)[i] = 1;}}return buffer;}();
</script>

View File

@ -42,3 +42,4 @@ load 880129.html
skip-if(B2G) load 880202.html # load failed, bug 833371 for B2G
load 880342-1.html
load 880342-2.html
load 880384.html