blob: 6ea6196151b4b317a1957fdb84a0610ed12d90dd [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<p>This test passes if it does not crash.</p>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
onload = () => {
for (let i = 0; i < 20; i++)
new AudioContext().createChannelSplitter();
setTimeout(() => {
if (window.testRunner)
testRunner.notifyDone();
}, 10);
};
</script>
</body>
</html>