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/htmllabelelement.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/htmllabelelement.rs')
-rw-r--r-- | components/script/dom/htmllabelelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmllabelelement.rs b/components/script/dom/htmllabelelement.rs index af3b51609a3..8accafc2da1 100644 --- a/components/script/dom/htmllabelelement.rs +++ b/components/script/dom/htmllabelelement.rs @@ -76,7 +76,7 @@ impl Activatable for HTMLLabelElement { } // https://html.spec.whatwg.org/multipage/#implicit-submission - 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) { //FIXME: Investigate and implement implicit submission for label elements // Issue filed at https://github.com/servo/servo/issues/8263 } |