diff options
author | Arthur Marble <arthur@info9.net> | 2016-09-17 01:20:51 -0500 |
---|---|---|
committer | Arthur Marble <arthur@info9.net> | 2016-09-17 20:31:46 -0500 |
commit | fd0622a74195092b8873f497727bc654c40729be (patch) | |
tree | d6334d4b54239173cafb58ebbe08d7d80d32b972 /components/script/dom/htmllabelelement.rs | |
parent | 77170a14bc05fdf2ee420fd94fd661f19318ee64 (diff) | |
download | servo-fd0622a74195092b8873f497727bc654c40729be.tar.gz servo-fd0622a74195092b8873f497727bc654c40729be.zip |
This commit refactors shiftKey to shift_key where 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 8accafc2da1..b1a4e1dfe5b 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, _ctrl_key: bool, _shiftKey: bool, _altKey: bool, _metaKey: bool) { + fn implicit_submission(&self, _ctrl_key: bool, _shift_key: bool, _altKey: bool, _metaKey: bool) { //FIXME: Investigate and implement implicit submission for label elements // Issue filed at https://github.com/servo/servo/issues/8263 } |