blob: 3151c5aa799db7e0473ece43ec1d0937ec6cb52c [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-legacy.js"></script>
</head>
<body>
<script>
window.onload = init;
function init() {
if (!window.testRunner)
return;
generateExponentialOscillatorSweep("custom");
}
</script>
</body>
</html>