gecko-dev/dom/worklet/tests/worklet_audioWorklet.js
2018-10-08 19:15:13 +00:00

12 lines
414 B
JavaScript

class DummyProcessWorkletProcessor extends AudioWorkletProcessor {
constructor() { super(); }
process() {
// Do nothing, output silence
}
}
// We need to pass a valid AudioWorkletProcessor here, otherwise, it will fail,
// and the console.log won't be executed
registerProcessor("sure!", DummyProcessWorkletProcessor);
console.log(this instanceof AudioWorkletGlobalScope ? "So far so good" : "error");