aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/serviceworkercontainer.rs
diff options
context:
space:
mode:
authorVignesh Sarma K (വിഘ്നേഷ് ശ൪മ കെ) <vignesh.sarma@gmail.com>2016-09-25 20:32:32 +0530
committerVignesh Sarma K (വിഘ്നേഷ് ശ൪മ കെ) <vignesh.sarma@gmail.com>2016-09-25 20:32:32 +0530
commit3bf581309638ddef2bcad0ad0e1f180d28f97eb5 (patch)
tree4b5c028e43748a91ad07632ff6c80c0615cf912c /components/script/dom/serviceworkercontainer.rs
parent1d5a05d112fb7063fdcec603da2ddf0cecc0a8ac (diff)
downloadservo-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/serviceworkercontainer.rs')
-rw-r--r--components/script/dom/serviceworkercontainer.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/serviceworkercontainer.rs b/components/script/dom/serviceworkercontainer.rs
index 73e19690e2e..abeb69f2ea3 100644
--- a/components/script/dom/serviceworkercontainer.rs
+++ b/components/script/dom/serviceworkercontainer.rs
@@ -48,12 +48,12 @@ impl Controllable for ServiceWorkerContainer {
}
impl ServiceWorkerContainerMethods for ServiceWorkerContainer {
- // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#service-worker-container-controller-attribute
+ // https://w3c.github.io/ServiceWorker/#service-worker-container-controller-attribute
fn GetController(&self) -> Option<Root<ServiceWorker>> {
return self.controller.get()
}
- // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#service-worker-container-register-method
+ // https://w3c.github.io/ServiceWorker/#service-worker-container-register-method
fn Register(&self,
script_url: USVString,
options: &RegistrationOptions) -> Fallible<Root<ServiceWorkerRegistration>> {