dynamics-compressor-extreme-value.html (443B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <script> 4 window.addEventListener("load", async () => { 5 const ctx = new OfflineAudioContext(12, 1024, 48000); 6 const a = new DynamicsCompressorNode(ctx); 7 const b = new ConstantSourceNode(ctx, {"offset": 7.574213933350201e+37}); 8 b.connect(a, 0, 0); 9 b.start(0); 10 await ctx.startRendering(); 11 document.documentElement.classList.remove("reftest-wait"); 12 }); 13 </script> 14 </html>