mirror of
https://github.com/servo/servo.git
synced 2025-08-08 23:15:33 +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
|
@ -1275,7 +1275,7 @@ impl Activatable for HTMLInputElement {
|
|||
|
||||
// https://html.spec.whatwg.org/multipage/#implicit-submission
|
||||
#[allow(unsafe_code)]
|
||||
fn implicit_submission(&self, ctrl_key: bool, shift_key: bool, altKey: bool, metaKey: bool) {
|
||||
fn implicit_submission(&self, ctrl_key: bool, shift_key: bool, alt_key: bool, metaKey: bool) {
|
||||
let doc = document_from_node(self);
|
||||
let node = doc.upcast::<Node>();
|
||||
let owner = self.form_owner();
|
||||
|
@ -1297,7 +1297,7 @@ impl Activatable for HTMLInputElement {
|
|||
synthetic_click_activation(button.as_element(),
|
||||
ctrl_key,
|
||||
shift_key,
|
||||
altKey,
|
||||
alt_key,
|
||||
metaKey,
|
||||
ActivationSource::NotFromClick)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue