aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/location.rs
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-04-14 10:44:51 +0200
committerMs2ger <ms2ger@gmail.com>2015-04-14 10:44:51 +0200
commit49393a87623d3d7d0453689bf0d633753dd8921d (patch)
treee8448fb4b5ef7d7c7599bd01b3116267ecf81985 /components/script/dom/location.rs
parent4997d3a112354a407365fede1ab1944834a2e13c (diff)
downloadservo-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.rs2
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);
}