diff options
author | Arthur Marble <arthur@info9.net> | 2016-09-17 02:11:19 -0500 |
---|---|---|
committer | Arthur Marble <arthur@info9.net> | 2016-09-17 20:31:46 -0500 |
commit | 5ce3510a50cd908708efdce9e18749f1596d197f (patch) | |
tree | 3dfc4d7f91835a9f3f9829a099c052bb443f4826 /components/script/dom/activation.rs | |
parent | bdbc04409d25770b40c0f806bfa815e5a2313d21 (diff) | |
download | servo-5ce3510a50cd908708efdce9e18749f1596d197f.tar.gz servo-5ce3510a50cd908708efdce9e18749f1596d197f.zip |
Refactored metaKey to meta_key where possible
Diffstat (limited to 'components/script/dom/activation.rs')
-rw-r--r-- | components/script/dom/activation.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/activation.rs b/components/script/dom/activation.rs index d0623740a63..fc43efee367 100644 --- a/components/script/dom/activation.rs +++ b/components/script/dom/activation.rs @@ -65,7 +65,7 @@ pub fn synthetic_click_activation(element: &Element, ctrl_key: bool, shift_key: bool, alt_key: bool, - metaKey: bool, + meta_key: bool, source: ActivationSource) { // Step 1 if element.click_in_progress() { @@ -96,7 +96,7 @@ pub fn synthetic_click_activation(element: &Element, ctrl_key, shift_key, alt_key, - metaKey, + meta_key, 0, None); let event = mouse.upcast::<Event>(); |