blob: e9efc4096f4946f20654c8c505ff6b05cb4c4c21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html class="reftest-wait">
<script>
var context = new window.AudioContext();
var source = context.createBufferSource();
source.connect(context.destination);
source.playbackRate.value = 0.01;
source.buffer = context.createBuffer(2, 32, context.sampleRate);
source.start(0);
setTimeout(
function() {
source.buffer = context.createBuffer(1, 10, context.sampleRate);
source.playbackRate.value = 1;
source.onended =
function() {
document.documentElement.removeAttribute("class");
};
}, 0);
</script>
</html>
|