mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
This commit refactors altKey to alt_key when possible.
This commit is contained in:
parent
fd0622a741
commit
bdbc04409d
6 changed files with 10 additions and 10 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue