layout: Move BoxFragment's block-level info into a dedicated struct (#37938)

`BoxFragment` had 2 fields that are only relevant for block-level boxes:
`clearance` and a boxed `block_margins_collapsed_with_children`.

This moves both pieces of data into a new `BlockLevelLayoutInfo` struct,
which is boxed.

As a result, the size of `BoxFragment` is reduced from 272 to 264 bytes.

Testing: Unneeded (no behavior change)

Signed-off-by: Oriol Brufau <obrufau@igalia.com>
This commit is contained in:
Oriol Brufau 2025-07-09 17:04:57 +02:00 committed by GitHub
parent 26f4da8249
commit d2ccf419c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 37 additions and 37 deletions

View file

@ -54,6 +54,19 @@ pub(crate) enum SpecificLayoutInfo {
TableWrapper,
}
#[derive(MallocSizeOf)]
pub(crate) struct BlockLevelLayoutInfo {
/// When the `clear` property is not set to `none`, it may introduce clearance.
/// Clearance is some extra spacing that is added above the top margin,
/// so that the element doesn't overlap earlier floats in the same BFC.
/// The presence of clearance prevents the top margin from collapsing with
/// earlier margins or with the bottom margin of the parent block.
/// <https://drafts.csswg.org/css2/#clearance>
pub clearance: Option<Au>,
pub block_margins_collapsed_with_children: CollapsedBlockMargins,
}
#[derive(MallocSizeOf)]
pub(crate) struct BoxFragment {
pub base: BaseFragment,
@ -73,21 +86,11 @@ pub(crate) struct BoxFragment {
pub border: PhysicalSides<Au>,
pub margin: PhysicalSides<Au>,
/// When the `clear` property is not set to `none`, it may introduce clearance.
/// Clearance is some extra spacing that is added above the top margin,
/// so that the element doesn't overlap earlier floats in the same BFC.
/// The presence of clearance prevents the top margin from collapsing with
/// earlier margins or with the bottom margin of the parent block.
/// <https://drafts.csswg.org/css2/#clearance>
pub clearance: Option<Au>,
/// When this [`BoxFragment`] is for content that has a baseline, this tracks
/// the first and last baselines of that content. This is used to propagate baselines
/// to things such as tables and inline formatting contexts.
baselines: Baselines,
block_margins_collapsed_with_children: Option<Box<CollapsedBlockMargins>>,
/// The scrollable overflow of this box fragment in the same coordiante system as
/// [`Self::content_rect`] ie a rectangle within the parent fragment's content
/// rectangle. This does not take into account any transforms this fragment applies.
@ -103,6 +106,9 @@ pub(crate) struct BoxFragment {
/// Additional information of from layout that could be used by Javascripts and devtools.
pub specific_layout_info: Option<SpecificLayoutInfo>,
/// Additional information for block-level boxes.
pub block_level_layout_info: Option<Box<BlockLevelLayoutInfo>>,
}
impl BoxFragment {
@ -126,13 +132,12 @@ impl BoxFragment {
padding,
border,
margin,
clearance: None,
baselines: Baselines::default(),
block_margins_collapsed_with_children: None,
scrollable_overflow: None,
resolved_sticky_insets: AtomicRefCell::default(),
background_mode: BackgroundMode::Normal,
specific_layout_info,
block_level_layout_info: None,
}
}
@ -185,16 +190,15 @@ impl BoxFragment {
self.background_mode = BackgroundMode::None;
}
pub fn with_block_margins_collapsed_with_children(
pub fn with_block_level_layout_info(
mut self,
collapsed_margins: CollapsedBlockMargins,
block_margins_collapsed_with_children: CollapsedBlockMargins,
clearance: Option<Au>,
) -> Self {
self.block_margins_collapsed_with_children = Some(collapsed_margins.into());
self
}
pub fn with_clearance(mut self, clearance: Option<Au>) -> Self {
self.clearance = clearance;
self.block_level_layout_info = Some(Box::new(BlockLevelLayoutInfo {
block_margins_collapsed_with_children,
clearance,
}));
self
}
@ -300,7 +304,6 @@ impl BoxFragment {
\npadding rect={:?}\
\nborder rect={:?}\
\nmargin={:?}\
\nclearance={:?}\
\nscrollable_overflow={:?}\
\nbaselines={:?}\
\noverflow={:?}",
@ -309,7 +312,6 @@ impl BoxFragment {
self.padding_rect(),
self.border_rect(),
self.margin,
self.clearance,
self.scrollable_overflow(),
self.baselines,
self.style.effective_overflow(self.base.flags),
@ -513,11 +515,4 @@ impl BoxFragment {
_ => false,
}
}
pub(crate) fn block_margins_collapsed_with_children(&self) -> CollapsedBlockMargins {
match self.block_margins_collapsed_with_children.as_ref() {
Some(collapsed_block_margins) => *(collapsed_block_margins).clone(),
_ => CollapsedBlockMargins::zero(),
}
}
}