[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / notifications / notifications-no-icon.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4     <script type="text/javascript">
5         function log(message)
6         {
7             document.getElementById("result").innerHTML += message + "<br>";
8         }
9         
10         function runTests()
11         {
12             if (window.layoutTestController) {
13                 layoutTestController.grantDesktopNotificationPermission("file://");
14                 layoutTestController.dumpAsText();
15             }
16
17             if (!window.webkitNotifications) {
18                 log("FAIL: No webkitNotifications interface!");
19             }
20             
21             var M = window.webkitNotifications.createNotification("", "New E-mail", "Meet me tonight at 8!");
22             M.show();
23         }
24     </script>
25 </head>
26 <body>
27 <p>Sending notifications with permission...</p>
28     
29     
30 <script type="text/javascript">
31 runTests();
32 </script>
33
34 <div id="result"></div>
35 </body>
36 </html>