1
0
Fork 0
firefox/testing/web-platform/tests/webaudio/the-audio-api/processing-model/cycle-without-delay.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

36 lines
1 KiB
HTML

<!DOCTYPE html>
<html class="a">
<head>
<title>Cycles without DelayNode in audio node graph</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
function doTest() {
var off = new OfflineAudioContext(1, 512, 48000);
var osc = new OscillatorNode(off);
var fb = new GainNode(off);
// zero delay feedback loop
osc.connect(fb).connect(fb).connect(off.destination);
osc.start(0);
return off.startRendering().then((b) => {
return Promise.resolve(b.getChannelData(0));
});
}
promise_test(() => {
return doTest().then(samples => {
var silent = true;
for (var i = 0; i < samples.length; i++) {
if (samples[i] != 0.0) {
silent = false;
break;
}
}
assert_true(silent);
});
}, 'Test that cycles that don\'t contain a DelayNode are muted');
</script>
</body>
</html>