This commit refactors altKey to alt_key when possible.

This commit is contained in:
Arthur Marble 2016-09-17 01:26:55 -05:00
parent fd0622a741
commit bdbc04409d
6 changed files with 10 additions and 10 deletions

View file

@ -64,7 +64,7 @@ pub enum ActivationSource {
pub fn synthetic_click_activation(element: &Element,
ctrl_key: bool,
shift_key: bool,
altKey: bool,
alt_key: bool,
metaKey: bool,
source: ActivationSource) {
// Step 1
@ -95,7 +95,7 @@ pub fn synthetic_click_activation(element: &Element,
0,
ctrl_key,
shift_key,
altKey,
alt_key,
metaKey,
0,
None);