Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/DOMParser-interface
/
.
/
notifications
/
resources
/
shownotification-window-iframe.html
blob: 2a45e794656fcbe20d7dcd741b37bffcc9630851 [
file
] [
edit
]
<!DOCTYPE html>
<meta
charset
=
"utf-8"
>
<script>
async
function
showNotification
()
{
const
registration
=
await navigator
.
serviceWorker
.
ready
;
await registration
.
showNotification
(
'foo'
);
}
</script>