summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/test_notificationclose.html
blob: 15241445d9a2777da4f5321825f658df3f71d4fb (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1265841
-->
<head>
  <title>Bug 1265841 - Test ServiceWorkerGlobalScope.notificationclose event.</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/dom/notification/test/mochitest/MockServices.js"></script>
  <script type="text/javascript" src="/tests/dom/notification/test/mochitest/NotificationTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1265841">Bug 1265841</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
<script src="utils.js"></script>
<script type="text/javascript">
  SimpleTest.requestFlakyTimeout("Mock alert service dispatches show, click, and close events.");

  function testFrame(src) {
    var iframe = document.createElement("iframe");
    iframe.src = src;
    window.callback = function(data) {
      window.callback = null;
      document.body.removeChild(iframe);
      iframe = null;
      ok(data.result, "Got notificationclose event with correct data.");
      ok(!data.windowOpened,
         "Shouldn't allow to openWindow in notificationclose");
      MockServices.unregister();
      registration.unregister().then(function() {
        SimpleTest.finish();
      });
    };
    document.body.appendChild(iframe);
  }

  var registration;

  function runTest() {
    MockServices.register();
    navigator.serviceWorker.register("notificationclose.js", { scope: "notificationclose.html" }).then(function(reg) {
      registration = reg;
      return waitForState(reg.installing, 'activated');
    }, function(e) {
      ok(false, "registration should have passed!");
    }).then(() => {
      testFrame('notificationclose.html');
    });
  };

  SimpleTest.waitForExplicitFinish();
  SpecialPowers.pushPrefEnv({"set": [
    ["dom.serviceWorkers.exemptFromPerDomainMax", true],
    ["dom.serviceWorkers.enabled", true],
    ["dom.serviceWorkers.testing.enabled", true],
    ["dom.webnotifications.serviceworker.enabled", true],
    ["notification.prompt.testing", true],
  ]}, runTest);
</script>
</body>
</html>