From 7986423cd7235eeff6da2c2395c6ecdef4fb78df Mon Sep 17 00:00:00 2001 From: Arthur Marble Date: Sun, 18 Sep 2016 05:57:24 -0500 Subject: [PATCH] One last refactoring before fixing --- components/script/dom/activation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/script/dom/activation.rs b/components/script/dom/activation.rs index fc43efee367..58db9234170 100644 --- a/components/script/dom/activation.rs +++ b/components/script/dom/activation.rs @@ -31,7 +31,7 @@ pub trait Activatable { fn activation_behavior(&self, event: &Event, target: &EventTarget); // 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, shift_key: bool, alt_key: bool, meta_key: bool); // https://html.spec.whatwg.org/multipage/#concept-selector-active fn enter_formal_activation_state(&self) {