gecko/dom/tests/mochitest/notification/create_notification.html
William Chen 6e9706f49f Bug 782211 - Part 5: Implement Notification API. r=smaug
--HG--
rename : docshell/test/test_bug344861.html => docshell/test/navigation/test_bug344861.html
2013-03-18 06:24:54 -07:00

17 lines
265 B
HTML

<!DOCTYPE html>
<html>
<head><meta charset=utf-8>
<title>Create a notification</title>
</head>
<body>
<script>
var notification = new Notification("This is a title", {
body: "This is a notification body",
tag: "sometag",
});
</script>
</body>
</html>