blob: b53533eb0eb3e48d7b34abcf9e22d79a50d774f7 [file] [log] [blame]
<html>
<head>
<title>Desktop Notification Permission test</title>
<script>
requestPermission = function(cb) {
window.webkitNotifications.requestPermission(function() {
if (cb)
cb(window.webkitNotifications.checkPermission() == 0);
});
}
requestPermission()
</script>
</head>
<body>
Desktop Notification test
</body>
</html>