mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Rustfmt recent changes.
This commit is contained in:
parent
e885ccb7ae
commit
ef16c5844f
28 changed files with 111 additions and 63 deletions
|
@ -1113,12 +1113,11 @@ impl BaseFlow {
|
|||
self.flags.set(
|
||||
FlowFlags::INLINE_POSITION_IS_STATIC,
|
||||
logical_position.inline_start.is_auto() &&
|
||||
logical_position.inline_end.is_auto()
|
||||
logical_position.inline_end.is_auto(),
|
||||
);
|
||||
self.flags.set(
|
||||
FlowFlags::BLOCK_POSITION_IS_STATIC,
|
||||
logical_position.block_start.is_auto() &&
|
||||
logical_position.block_end.is_auto()
|
||||
logical_position.block_start.is_auto() && logical_position.block_end.is_auto(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue