blob: b51b74fc710f0b9e5eb8e712117ae194d5fc424e [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script>
function startPlaying()
{
context = new AudioContext();
let oscillator = new OscillatorNode(context);
oscillator.connect(context.destination);
oscillator.start();
}
</script>
</body>
</html>