forked from mirrors/gecko-dev
Bug 1593244 avoid await and async function so that setup() catches undefined context.audioWorklet r=padenot
Differential Revision: https://phabricator.services.mozilla.com/D51556 --HG-- extra : moz-landing-system : lando
This commit is contained in:
parent
b5f917254e
commit
407ce752f5
1 changed files with 3 additions and 5 deletions
|
|
@ -13,9 +13,9 @@
|
||||||
const audit = Audit.createTaskRunner();
|
const audit = Audit.createTaskRunner();
|
||||||
const context = new AudioContext();
|
const context = new AudioContext();
|
||||||
|
|
||||||
setup(async function () {
|
setup(function () {
|
||||||
await context.audioWorklet.addModule(
|
context.audioWorklet.addModule(
|
||||||
'processors/channel-count-processor.js');
|
'processors/channel-count-processor.js').then(() => audit.run());
|
||||||
|
|
||||||
// Test if the output channe count dynamically changes if the input
|
// Test if the output channe count dynamically changes if the input
|
||||||
// and output is 1.
|
// and output is 1.
|
||||||
|
|
@ -74,8 +74,6 @@
|
||||||
// if the specified channel count is kept correctly.
|
// if the specified channel count is kept correctly.
|
||||||
node.connect(context.destination);
|
node.connect(context.destination);
|
||||||
});
|
});
|
||||||
|
|
||||||
audit.run();
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue