1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/media/test/crashtests/882956.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +<script> 1.5 +o1 = new window.AudioContext(1, 2048, 44100); 1.6 +o2 = o1.createBufferSource(); 1.7 +o1.destination.channelCountMode = 'max'; 1.8 +o2.connect(o1.destination); 1.9 +o2.buffer = function(){ 1.10 + var buffer = o1.createBuffer(30, 442, 94933); 1.11 + for(var c=0; c<30; c++) { 1.12 + for(var i=0; i<442; i++) { 1.13 + buffer.getChannelData(c)[i] = 1; 1.14 + } 1.15 + } 1.16 + return buffer; 1.17 +}(); 1.18 +</script>