mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
33 lines
675 B
HTML
33 lines
675 B
HTML
<!-- Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
<!doctype html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Web Audio Editor test page</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript;version=1.8">
|
|
"use strict";
|
|
(function () {
|
|
let ctx = new AudioContext();
|
|
let osc = ctx.createOscillator();
|
|
let gain = ctx.createGain();
|
|
|
|
for (let i = 0; i < 10; i++) {
|
|
ctx.createBufferSource();
|
|
}
|
|
|
|
osc.connect(gain);
|
|
gain.connect(ctx.destination);
|
|
gain.gain.value = 0;
|
|
osc.start();
|
|
})();
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|