Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / notifications / resources / notification-click.js
1 function runTest()
2 {
3     var notification = new Notification("Notification");
4     notification.addEventListener("show", function() {
5         testPassed("notification.onshow() has been called.");
6         if (window.testRunner)
7             testRunner.simulateWebNotificationClick("Notification");
8     });
9
10     notification.addEventListener("click", function() {
11         testPassed("notification.onclick() has been called.");
12         notification.close();
13
14         if (window.testRunner)
15             testRunner.notifyDone();
16     });
17 }