diff options
author | Arthur Marble <arthur@info9.net> | 2016-09-17 01:10:12 -0500 |
---|---|---|
committer | Arthur Marble <arthur@info9.net> | 2016-09-17 20:31:46 -0500 |
commit | 77170a14bc05fdf2ee420fd94fd661f19318ee64 (patch) | |
tree | f3b565a1cb82acaec005a762e3f667452eaf3750 /components/script/dom/htmlanchorelement.rs | |
parent | 83f687a7be2d4cdda11f5ec03133c23d6d621e78 (diff) | |
download | servo-77170a14bc05fdf2ee420fd94fd661f19318ee64.tar.gz servo-77170a14bc05fdf2ee420fd94fd661f19318ee64.zip |
This commit refactors ctrlKey to ctrl_key wherever possible.
Diffstat (limited to 'components/script/dom/htmlanchorelement.rs')
-rw-r--r-- | components/script/dom/htmlanchorelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlanchorelement.rs b/components/script/dom/htmlanchorelement.rs index e9df2b6c999..2743258cc98 100644 --- a/components/script/dom/htmlanchorelement.rs +++ b/components/script/dom/htmlanchorelement.rs @@ -540,7 +540,7 @@ impl Activatable for HTMLAnchorElement { } //TODO:https://html.spec.whatwg.org/multipage/#the-a-element - fn implicit_submission(&self, _ctrlKey: bool, _shiftKey: bool, _altKey: bool, _metaKey: bool) { + fn implicit_submission(&self, _ctrl_key: bool, _shiftKey: bool, _altKey: bool, _metaKey: bool) { } } |