diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-04-14 10:44:51 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-04-14 10:44:51 +0200 |
commit | 49393a87623d3d7d0453689bf0d633753dd8921d (patch) | |
tree | e8448fb4b5ef7d7c7599bd01b3116267ecf81985 /components/script/dom/location.rs | |
parent | 4997d3a112354a407365fede1ab1944834a2e13c (diff) | |
download | servo-49393a87623d3d7d0453689bf0d633753dd8921d.tar.gz servo-49393a87623d3d7d0453689bf0d633753dd8921d.zip |
Update some URLs.
The HTML spec's division into pages is not stable, so it is safer to use the
URL without a specific page (which will redirect).
Diffstat (limited to 'components/script/dom/location.rs')
-rw-r--r-- | components/script/dom/location.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/location.rs b/components/script/dom/location.rs index 6c4ba3d8c7a..40efc0c7eec 100644 --- a/components/script/dom/location.rs +++ b/components/script/dom/location.rs @@ -37,7 +37,7 @@ impl Location { } impl<'a> LocationMethods for JSRef<'a, Location> { - // https://html.spec.whatwg.org/multipage/browsers.html#dom-location-assign + // https://html.spec.whatwg.org/multipage/#dom-location-assign fn Assign(self, url: DOMString) { self.window.root().r().load_url(url); } |