chromium/third_party/blink/web_tests/external/wpt/notifications/resources/shownotification-window-iframe.html

<!DOCTYPE html>
<meta charset="utf-8">
<script>
  async function showNotification() {
    const registration = await navigator.serviceWorker.ready;
    await registration.showNotification('foo');
  }
</script>