blob: d01d10034c1aa59910ae66d1c38ecb27ee7c96f8 [file] [log] [blame] [edit]
<!DOCTYPE html>
<script src="utils.js"></script>
<title>Fenced frame content to report the result of Notification.requestPermission</title>
<body>
<script>
(async () => {
const [permission_notification_key] = parseKeylist();
const result = await Notification.requestPermission();
writeValueToServer(permission_notification_key, `result: ${result}`);
})();
</script>
</body>