aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/activation.rs
diff options
context:
space:
mode:
authorArthur Marble <arthur@info9.net>2016-09-18 05:57:24 -0500
committerArthur Marble <arthur@info9.net>2016-09-18 05:57:24 -0500
commit7986423cd7235eeff6da2c2395c6ecdef4fb78df (patch)
tree46edcf1e33dd74141648bd7b5d22f0dd9c09a60d /components/script/dom/activation.rs
parent883902bd972c9ea91cf6b6be74908e87c517b72e (diff)
downloadservo-7986423cd7235eeff6da2c2395c6ecdef4fb78df.tar.gz
servo-7986423cd7235eeff6da2c2395c6ecdef4fb78df.zip
One last refactoring before fixing
Diffstat (limited to 'components/script/dom/activation.rs')
-rw-r--r--components/script/dom/activation.rs2
1 files changed, 1 insertions, 1 deletions
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) {