aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/url.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/url.rs')
-rw-r--r--components/script/dom/url.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/components/script/dom/url.rs b/components/script/dom/url.rs
index b31333b7ac2..9952739243b 100644
--- a/components/script/dom/url.rs
+++ b/components/script/dom/url.rs
@@ -270,11 +270,6 @@ impl URLMethods for URL {
.or_init(|| URLSearchParams::new(&self.global(), Some(self)))
}
- // https://url.spec.whatwg.org/#dom-url-href
- fn Stringifier(&self) -> DOMString {
- DOMString::from(self.Href().0)
- }
-
// https://url.spec.whatwg.org/#dom-url-username
fn Username(&self) -> USVString {
UrlHelper::Username(&self.url.borrow())