mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
layout: Make baseline_offset_of_last_line_box_in_flow()
only check
blocks in flow. Improves python.org. Closes #12124.
This commit is contained in:
parent
dc3e11f96e
commit
c6b9b315aa
4 changed files with 95 additions and 1 deletions
|
@ -1405,7 +1405,8 @@ impl<'a> ImmutableFlowUtils for &'a Flow {
|
|||
return kid.as_inline().baseline_offset_of_last_line()
|
||||
}
|
||||
if kid.is_block_like() &&
|
||||
kid.as_block().formatting_context_type() == FormattingContextType::None {
|
||||
kid.as_block().formatting_context_type() == FormattingContextType::None &&
|
||||
!base(kid).flags.contains(IS_ABSOLUTELY_POSITIONED) {
|
||||
if let Some(baseline_offset) = kid.baseline_offset_of_last_line_box_in_flow() {
|
||||
return Some(base(kid).position.start.b + baseline_offset)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue