aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmllabelelement.rs
diff options
context:
space:
mode:
authorArthur Marble <arthur@info9.net>2016-09-17 01:10:12 -0500
committerArthur Marble <arthur@info9.net>2016-09-17 20:31:46 -0500
commit77170a14bc05fdf2ee420fd94fd661f19318ee64 (patch)
treef3b565a1cb82acaec005a762e3f667452eaf3750 /components/script/dom/htmllabelelement.rs
parent83f687a7be2d4cdda11f5ec03133c23d6d621e78 (diff)
downloadservo-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.rs2
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
}