summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/test_nofetch_handler.html
blob: 0725a68561bb3fade62a40879882daa1ca919620 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for Bugs 1181127 and 1325101</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="error_reporting_helpers.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
</head>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1181127">Mozilla Bug 1181127</a>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1181127">Mozilla Bug 1325101</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
</pre>

<script src="utils.js"></script>
<script class="testbody" type="text/javascript">

add_task(function setupPrefs() {
  return SpecialPowers.pushPrefEnv({"set": [
    ["dom.serviceWorkers.enabled", true],
    ["dom.serviceWorkers.testing.enabled", true],
    // Make sure the event handler during the install event persists. This ensures
    // the reason for which the interception doesn't occur is because of the
    // handlesFetch=false flag from ServiceWorkerInfo.
    ["dom.serviceWorkers.idle_timeout", 299999],
  ]});
});

var iframeg;
function create_iframe(url) {
  return new Promise(function(res) {
    iframe = document.createElement('iframe');
    iframe.src = url;
    iframe.onload = function() { res(iframe) }
    document.body.appendChild(iframe);
    iframeg = iframe;
  })
}

add_task(async function test_nofetch_worker() {
  let registration = await navigator.serviceWorker.register(
    "nofetch_handler_worker.js", { scope: "./nofetch_handler_worker/"} )
    .then(swr => waitForState(swr.installing, 'activated', swr));

  let iframe = await create_iframe("./nofetch_handler_worker/doesnt_exist.html");
  ok(!iframe.contentDocument.body.innerHTML.includes("intercepted"), "Request was not intercepted.");

  await SpecialPowers.popPrefEnv();
  await registration.unregister();
});
</script>
</body>
</html>