blob: 4dadaddc7023a432ddd58ceecabe9511f5155424 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>Notifications: Document for closing a notification in the "unload" event.</title>
</head>
<body>
<script>
var notification = new Notification('My Notification', {
body: 'Created from a window.',
icon: '/icon.png',
});
opener.postMessage('opened', '*');
window.addEventListener('unload', function() {
notification.close();
opener.postMessage('closed', '*');
});
</script>
</body>
</html>