mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d4937eede5
--HG-- extra : transplant_source : %F6%8B%89C%60%02Hm%11%9FZ%F7I%2BJ%CF%23%8E%CE%D3
15 lines
486 B
HTML
15 lines
486 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<script>
|
|
// 1024 > 89478.5 * 48000 - (1 << 32)
|
|
var context = new window.OfflineAudioContext(1, 1024, 48000);
|
|
context.oncomplete = function(e) {
|
|
document.documentElement.removeAttribute("class");
|
|
};
|
|
var buffer = context.createBuffer(1, 2048, context.sampleRate);
|
|
var source = context.createBufferSource();
|
|
source.buffer = buffer;
|
|
source.start(89478.5); // 89478.5 is a little greater than 2^32 / 48000.
|
|
context.startRendering();
|
|
</script>
|