blob: e7b4a7872c60d65fa2139c84a381318c8414e56e (
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
|
/**
* We are used by test_formSubmission.html to immediately activate and start
* controlling its page. We operate in 3 modes, conveyed via ?MODE appended to
* our URL.
*
* - "no-fetch": Don't register a fetch listener so that the optimized fetch
* event bypass happens.
* - "reset-fetch": Do register a fetch listener, reset every interception.
* - "proxy-fetch": Do register a fetch listener, resolve every interception
* with fetch(event.request).
*/
const mode = location.search.slice(1);
// Fetch handling.
if (mode !== "no-fetch") {
addEventListener("fetch", function (event) {
if (mode === "reset-fetch") {
// Don't invoke respondWith, resetting the interception.
return;
} else if (mode === "proxy-fetch") {
// Per the spec, there's an automatic waitUntil() on this too.
event.respondWith(fetch(event.request));
return;
}
});
}
// Go straight to activation, bypassing waiting.
addEventListener("install", function (event) {
event.waitUntil(skipWaiting());
});
// Control the test document ASAP.
addEventListener("activate", function (event) {
event.waitUntil(clients.claim());
});
|