1
0
Fork 0
firefox/testing/web-platform/tests/browsing-topics/resources/intercept-request.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

12 lines
350 B
JavaScript

self.addEventListener('fetch', event => {
event.waitUntil(async function () {
if (!event.clientId) return;
const client = await clients.get(event.clientId);
if (!client) return;
client.postMessage({
fetchUrl: event.request.url,
topicsHeader: String(event.request.headers.get("Sec-Browsing-Topics"))
});
}());
});