diff options
author | Vignesh Sarma K (വിഘ്നേഷ് ശ൪മ കെ) <vignesh.sarma@gmail.com> | 2016-09-25 20:32:32 +0530 |
---|---|---|
committer | Vignesh Sarma K (വിഘ്നേഷ് ശ൪മ കെ) <vignesh.sarma@gmail.com> | 2016-09-25 20:32:32 +0530 |
commit | 3bf581309638ddef2bcad0ad0e1f180d28f97eb5 (patch) | |
tree | 4b5c028e43748a91ad07632ff6c80c0615cf912c /components/script/dom/navigator.rs | |
parent | 1d5a05d112fb7063fdcec603da2ddf0cecc0a8ac (diff) | |
download | servo-3bf581309638ddef2bcad0ad0e1f180d28f97eb5.tar.gz servo-3bf581309638ddef2bcad0ad0e1f180d28f97eb5.zip |
Replace instances of old ServiceWorker specification URL with new one
The old specification URL is
https://slightlyoff.github.io/ServiceWorker/spec/service_worker/ has
been replaced by the new one at https://w3c.github.io/ServiceWorker/.
Diffstat (limited to 'components/script/dom/navigator.rs')
-rw-r--r-- | components/script/dom/navigator.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/navigator.rs b/components/script/dom/navigator.rs index b2a4fa81b3b..ce97c30ae60 100644 --- a/components/script/dom/navigator.rs +++ b/components/script/dom/navigator.rs @@ -103,7 +103,7 @@ impl NavigatorMethods for Navigator { false } - // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#navigator-service-worker-attribute + // https://w3c.github.io/ServiceWorker/#navigator-service-worker-attribute fn ServiceWorker(&self) -> Root<ServiceWorkerContainer> { self.service_worker.or_init(|| ServiceWorkerContainer::new(self.global().r())) } |