1741677.html (468B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <html class="reftest-wait"> 4 <script> 5 const script = ` 6 navigator.mediaCapabilities.decodingInfo({ 7 type: 'file', 8 audio: { contentType: "audio/flac" } 9 }).then(postMessage("done")); 10 `; 11 let worker = new Worker(URL.createObjectURL(new Blob([script]))); 12 // Stop test completion and crash from racing each other. 13 worker.onmessage = () => document.documentElement.removeAttribute("class"); 14 </script> 15 </html>