shownotification-window-iframe.html (210B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <script> 4 async function showNotification() { 5 const registration = await navigator.serviceWorker.ready; 6 await registration.showNotification('foo'); 7 } 8 </script>