mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
309 B
HTML
18 lines
309 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var bufferSource = AudioContext().createScriptProcessor().context.createBufferSource();
|
|
bufferSource.noteGrainOn(0, 0, 0);
|
|
bufferSource.noteOff(562949953421313);
|
|
}
|
|
|
|
</script></head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|