diff --git a/components/script/dom/serviceworkerglobalscope.rs b/components/script/dom/serviceworkerglobalscope.rs index 9717910e4ffb..0c008fdaf6e3 100644 --- a/components/script/dom/serviceworkerglobalscope.rs +++ b/components/script/dom/serviceworkerglobalscope.rs @@ -402,7 +402,7 @@ impl ServiceWorkerGlobalScope { Response(mediator) => { // TODO XXXcreativcoder This will eventually use a FetchEvent interface to fire event // when we have the Request and Response dom api's implemented - // https://slightlyoff.github.io/ServiceWorker/spec/service_worker_1/index.html#fetch-event-section + // https://w3c.github.io/ServiceWorker/#fetchevent-interface self.upcast::().fire_event(atom!("fetch")); let _ = mediator.response_chan.send(None); },