1
0
Fork 0
firefox/dom/serviceworkers/test/sw_respondwith_serviceworker.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

24 lines
555 B
JavaScript

const SERVICEWORKER_DOC = `<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<script src="utils.js" type="text/javascript"></script>
</head>
<body>
SERVICEWORKER
</body>
</html>
`;
const SERVICEWORKER_RESPONSE = new Response(SERVICEWORKER_DOC, {
headers: { "content-type": "text/html" },
});
addEventListener("fetch", event => {
// Allow utils.js which we explicitly include to be loaded by resetting
// interception.
if (event.request.url.endsWith("/utils.js")) {
return;
}
event.respondWith(SERVICEWORKER_RESPONSE.clone());
});