mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
crashtest for bug 966636
derived from testcase by Atte Kettunen <attekett@gmail.com> --HG-- extra : rebase_source : 8ec0f239e118d92e04b368490c49dd045bfc5ca5
This commit is contained in:
parent
f19e56d843
commit
2a948ef5df
45
content/media/test/crashtests/966636.html
Normal file
45
content/media/test/crashtests/966636.html
Normal file
@ -0,0 +1,45 @@
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
<script>
|
||||
function boom() {
|
||||
var Context0= new window.AudioContext();
|
||||
var BufferSource0=Context0.createBufferSource();
|
||||
BufferSource0.start(0);
|
||||
BufferSource0.playbackRate.value = 1.0/128.0;
|
||||
|
||||
setTimeout(
|
||||
function(){
|
||||
BufferSource0.buffer=
|
||||
function(){
|
||||
var length=1;
|
||||
var Buffer=Context0.createBuffer(1,length,Context0.sampleRate);
|
||||
var bufferData= Buffer.getChannelData(0);
|
||||
for (var i = 0; i < length; ++i) {
|
||||
bufferData[i] = Math.sin(i*(626))
|
||||
};return Buffer;
|
||||
}();
|
||||
setTimeout(
|
||||
function(){
|
||||
document.documentElement.removeAttribute("class");
|
||||
}, 0)
|
||||
},4)
|
||||
|
||||
BufferSource0.buffer=
|
||||
function(){
|
||||
const resample_filter_length = 64;
|
||||
// Small enough so that resampler tail latency is triggered immediately,
|
||||
// but large enough that skip_zeros does not consume resampler tail
|
||||
// latency.
|
||||
var length=resample_filter_length/2 + 1;
|
||||
var Buffer=Context0.createBuffer(1,length,Context0.sampleRate);
|
||||
var bufferData= Buffer.getChannelData(0);
|
||||
for (var i = 0; i < length; ++i) {
|
||||
bufferData[i] = Math.sin(i*(311980))
|
||||
};
|
||||
return Buffer;
|
||||
}();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="boom();">
|
||||
</body>
|
@ -65,6 +65,7 @@ load 933151.html
|
||||
load 933156.html
|
||||
load 944851.html
|
||||
load 952756.html
|
||||
load 966636.html
|
||||
load 986901.html
|
||||
load buffer-source-ended-1.html
|
||||
load offline-buffer-source-ended-1.html
|
||||
|
Loading…
Reference in New Issue
Block a user