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