diff options
Diffstat (limited to 'components/script/dom/htmlanchorelement.rs')
-rw-r--r-- | components/script/dom/htmlanchorelement.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/components/script/dom/htmlanchorelement.rs b/components/script/dom/htmlanchorelement.rs index 4e749ff6306..c96b13099cf 100644 --- a/components/script/dom/htmlanchorelement.rs +++ b/components/script/dom/htmlanchorelement.rs @@ -69,15 +69,6 @@ impl<'a> VirtualMethods for &'a HTMLAnchorElement { Some(htmlelement as &VirtualMethods) } - fn handle_event(&self, event: &Event) { - match self.super_type() { - Some(s) => { - s.handle_event(event); - } - None => {} - } - } - fn parse_plain_attribute(&self, name: &Atom, value: DOMString) -> AttrValue { match name { &atom!("rel") => AttrValue::from_serialized_tokenlist(value), |