mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
15
dom/media/test/crashtests/882956.html
Normal file
15
dom/media/test/crashtests/882956.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<script>
|
||||
o1 = new window.AudioContext(1, 2048, 44100);
|
||||
o2 = o1.createBufferSource();
|
||||
o1.destination.channelCountMode = 'max';
|
||||
o2.connect(o1.destination);
|
||||
o2.buffer = function(){
|
||||
var buffer = o1.createBuffer(30, 442, 94933);
|
||||
for(var c=0; c<30; c++) {
|
||||
for(var i=0; i<442; i++) {
|
||||
buffer.getChannelData(c)[i] = 1;
|
||||
}
|
||||
}
|
||||
return buffer;
|
||||
}();
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue