1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/tests/mochitest/notification/desktop-notification/create_notification.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head><meta charset=utf-8> 1.7 + <title>Create a notification</title> 1.8 +</head> 1.9 +<body> 1.10 +<script> 1.11 + 1.12 +var notification = new Notification("This is a title", { 1.13 + body: "This is a notification body", 1.14 + tag: "sometag", 1.15 + }); 1.16 + 1.17 +</script> 1.18 +</body> 1.19 +</html>