mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
fix formsubmitter methods for buttons
This commit is contained in:
parent
b4f573db1a
commit
169af6f35e
1 changed files with 6 additions and 6 deletions
|
@ -736,8 +736,8 @@ impl<'a> FormSubmitter<'a> {
|
|||
},
|
||||
FormSubmitter::ButtonElement(button_element) => {
|
||||
button_element.get_form_attribute(&atom!("formenctype"),
|
||||
|i| i.FormAction(),
|
||||
|f| f.Action())
|
||||
|i| i.FormEnctype(),
|
||||
|f| f.Enctype())
|
||||
}
|
||||
};
|
||||
match &*attr {
|
||||
|
@ -759,8 +759,8 @@ impl<'a> FormSubmitter<'a> {
|
|||
},
|
||||
FormSubmitter::ButtonElement(button_element) => {
|
||||
button_element.get_form_attribute(&atom!("formmethod"),
|
||||
|i| i.FormAction(),
|
||||
|f| f.Action())
|
||||
|i| i.FormMethod(),
|
||||
|f| f.Method())
|
||||
}
|
||||
};
|
||||
match &*attr {
|
||||
|
@ -780,8 +780,8 @@ impl<'a> FormSubmitter<'a> {
|
|||
},
|
||||
FormSubmitter::ButtonElement(button_element) => {
|
||||
button_element.get_form_attribute(&atom!("formtarget"),
|
||||
|i| i.FormAction(),
|
||||
|f| f.Action())
|
||||
|i| i.FormTarget(),
|
||||
|f| f.Target())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue