aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/client.rs
diff options
context:
space:
mode:
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)