mirror of
https://github.com/servo/servo.git
synced 2025-07-22 06:43:40 +01:00
Move '&&' to the end of the previous line.
Following https://github.com/servo/servo/issues/10692 this is just a formating change to satisfy a new tidy requirement of not having '&&' at the beginning of a line.
This commit is contained in:
parent
01b111c43e
commit
924d804583
11 changed files with 29 additions and 29 deletions
|
@ -244,8 +244,8 @@ impl HTMLFormElement {
|
|||
let base = doc.url();
|
||||
// TODO: Handle browsing contexts
|
||||
// Step 4
|
||||
if submit_method_flag == SubmittedFrom::NotFromFormSubmitMethod
|
||||
&& !submitter.no_validate(self)
|
||||
if submit_method_flag == SubmittedFrom::NotFromFormSubmitMethod &&
|
||||
!submitter.no_validate(self)
|
||||
{
|
||||
if self.interactive_validation().is_err() {
|
||||
// TODO: Implement event handlers on all form control elements
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue