aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/client.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/client.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/client.rs')
-rw-r--r--components/script/dom/client.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/client.rs b/components/script/dom/client.rs
index d800d6f55e0..74ed61a52a7 100644
--- a/components/script/dom/client.rs
+++ b/components/script/dom/client.rs
@@ -41,17 +41,17 @@ impl Client {
}
impl ClientMethods for Client {
- // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#client-url-attribute
+ // https://w3c.github.io/ServiceWorker/#client-url-attribute
fn Url(&self) -> USVString {
self.url.clone()
}
- // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#client-frametype
+ // https://w3c.github.io/ServiceWorker/#client-frametype
fn FrameType(&self) -> FrameType {
self.frame_type
}
- // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#client-id
+ // https://w3c.github.io/ServiceWorker/#client-id
fn Id(&self) -> DOMString {
let uid_str = format!("{}", self.id);
DOMString::from_string(uid_str)