summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/notificationclose.html
blob: f18801122efb7ac681dce7933cab407efd1ecf64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<head>
  <title>Bug 1265841 - controlled page</title>
<script class="testbody" type="text/javascript">
  var testWindow = parent;
  if (opener) {
    testWindow = opener;
  }

  navigator.serviceWorker.ready.then(function(swr) {
    return swr.showNotification(
      "Hi there. The ServiceWorker should receive a close event for this.",
      { data: { complex: ["jsval", 5] }}).then(function() {
        return swr;
      });
  }).then(function(swr) {
    return swr.getNotifications();
  }).then(function(notifications) {
    notifications.forEach(function(notification) {
      notification.close();
    });
  });

  navigator.serviceWorker.onmessage = function(msg) {
    testWindow.callback(msg.data);
  };
</script>

</head>
<body>
</body>
</html>