blob: a87e003002efb3fba25140cd14cd9b6c1a9778b5 [file] [log] [blame]
<!DOCTYPE html>
<!--
Create an oscillator with a custom PeriodicWave and generate a slow exponential tone sweep.
The result can be checked for the correct wave shape and for aliasing artifacts.
See oscillator-testing.js for details.
-->
<html>
<head>
<script type="text/javascript" src="resources/audio-testing.js"></script>
<script type="text/javascript" src="resources/oscillator-testing.js"></script>
</head>
<body>
<script>
window.onload = init;
function init() {
if (!window.testRunner)
return;
generateExponentialOscillatorSweep("custom");
}
</script>
</body>
</html>