summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/877527.html
blob: c639d501b74295ed19448486e14252565b7e0efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<script>
try { o1 = new window.AudioContext(2, 5, 44100); } catch(e) { }
try { o2 = o1.createChannelMerger(1); } catch(e) { }
try { o3 = o1.createDelay(10); } catch(e) { }
try { o4 = o1.createBuffer(2, 2048, 8000); } catch(e) { }
try { o5 = o1.createPanner(); } catch(e) { }
try { o6 = o1.createBufferSource(); } catch(e) { }
try { o7 = (function() {
var buf = o1.createBuffer(1, 50000, o1.sampleRate);
for(var j=0; j<1; ++j) {
for(var i=0; i<50000; ++i) { buf.getChannelData(j)[i] = Math.sin(i * (9.8));}
}
return buf;
})(); } catch(e) { }
try { o6.buffer = o7; } catch(e) { }
try { o6.connect(o5); } catch(e) { }
try { o5.connect(o1.destination); } catch(e) { }
try { o1.listener.speedOfSound = 0.0000019073486328125; } catch(e) { }
try { o6.loop = true; } catch(e) { }
try { o8 = (function() {
var buf = o1.createBuffer(2, 1000, o1.sampleRate);
for(var j=0; j<2; ++j) {
for(var i=0; i<1000; ++i) { buf.getChannelData(j)[i] = Math.sin(i * (1));}
}
return buf;
})(); } catch(e) { }
try { o6.buffer = o7; } catch(e) { }
try { o6.connect(o5); } catch(e) { }
try { o5.connect(o1.destination); } catch(e) { }
try { o6.loopEnd = 1.4901161193847656e-8; } catch(e) { }
try { o6.connect(o1.destination); } catch(e) { }
try { o6.buffer = o8; } catch(e) { }
try { o5.setPosition(0.36, o1.destination.context.destination.channelCountMode, o1.destination.context.destination.channelInterpretation) } catch(e) { }
try { o2.channelCountMode = 'explicit'; } catch(e) { }
try { o1.listener.speedOfSound = 4; } catch(e) { }
try { o1.startRendering(); } catch(e) { }
</script>