diff options
author | takumi <takumi@indeed.com> | 2019-10-12 21:37:21 +0900 |
---|---|---|
committer | takumi <takumi@indeed.com> | 2019-10-18 15:00:03 +0900 |
commit | 7ce40080bf8a956a60a0a2a6d4258ed959ebceab (patch) | |
tree | 372e1fe0c50571af7c832d9834468d29a10f03e0 /components/script/dom/htmlanchorelement.rs | |
parent | 8ecbed9e423c473854143cef059d3bbc687777da (diff) | |
download | servo-7ce40080bf8a956a60a0a2a6d4258ed959ebceab.tar.gz servo-7ce40080bf8a956a60a0a2a6d4258ed959ebceab.zip |
[WIP] solve #22782
TODO: write tests for my change
Diffstat (limited to 'components/script/dom/htmlanchorelement.rs')
-rw-r--r-- | components/script/dom/htmlanchorelement.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/components/script/dom/htmlanchorelement.rs b/components/script/dom/htmlanchorelement.rs index c5b3fb51362..de082a9807e 100644 --- a/components/script/dom/htmlanchorelement.rs +++ b/components/script/dom/htmlanchorelement.rs @@ -578,16 +578,6 @@ impl Activatable for HTMLAnchorElement { //TODO: Download the link is `download` attribute is set. follow_hyperlink(element, ismap_suffix); } - - //TODO:https://html.spec.whatwg.org/multipage/#the-a-element - fn implicit_submission( - &self, - _ctrl_key: bool, - _shift_key: bool, - _alt_key: bool, - _meta_key: bool, - ) { - } } /// <https://html.spec.whatwg.org/multipage/#following-hyperlinks-2> |