mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
cbebfc17c9
This patch uses one pref per interface, to allow us finer grain control over which ones we might need to turn on in the future.
18 lines
300 B
HTML
18 lines
300 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var bufferSource = AudioContext().createScriptProcessor().context.createBufferSource();
|
|
bufferSource.start(0, 0, 0);
|
|
bufferSource.stop(562949953421313);
|
|
}
|
|
|
|
</script></head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|