diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-10-10 11:55:09 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-10-10 11:55:09 -0400 |
commit | 85f2b6fc5bd3d51ebb7a091fe2776fdd1cfbbb33 (patch) | |
tree | 897db3185c292d272aa7794581d8e5a901b13df9 /components/script/dom/htmltitleelement.rs | |
parent | 9cccd98254191b1663dcaee9010eee63fa8074a3 (diff) | |
download | servo-85f2b6fc5bd3d51ebb7a091fe2776fdd1cfbbb33.tar.gz servo-85f2b6fc5bd3d51ebb7a091fe2776fdd1cfbbb33.zip |
Replace usage of old-style WHATWG spec links
Diffstat (limited to 'components/script/dom/htmltitleelement.rs')
-rw-r--r-- | components/script/dom/htmltitleelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmltitleelement.rs b/components/script/dom/htmltitleelement.rs index 0640a121f5d..8936d9adb2c 100644 --- a/components/script/dom/htmltitleelement.rs +++ b/components/script/dom/htmltitleelement.rs @@ -47,7 +47,7 @@ impl HTMLTitleElement { } impl HTMLTitleElementMethods for HTMLTitleElement { - // https://www.whatwg.org/html/#dom-title-text + // https://html.spec.whatwg.org/multipage#dom-title-text fn Text(&self) -> DOMString { let node = NodeCast::from_ref(self); let mut content = String::new(); @@ -61,7 +61,7 @@ impl HTMLTitleElementMethods for HTMLTitleElement { content } - // https://www.whatwg.org/html/#dom-title-text + // https://html.spec.whatwg.org/multipage#dom-title-text fn SetText(&self, value: DOMString) { let node = NodeCast::from_ref(self); node.SetTextContent(Some(value)) |