mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Test case for bug 880384
--HG-- extra : rebase_source : a77b7f0c32555d645c1903164e0a7740ac61ca19
This commit is contained in:
parent
7396ea9682
commit
021d3cb4b8
8
content/media/test/crashtests/880384.html
Normal file
8
content/media/test/crashtests/880384.html
Normal 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>
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user