mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Make naming of variables consistent with SpecificLayoutInfo
(#35104)
This is a followup to #34926. Fixes #35078. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
a54add0159
commit
102b77aef8
10 changed files with 41 additions and 41 deletions
|
@ -904,7 +904,7 @@ impl<'a> BuilderForBoxFragment<'a> {
|
|||
|
||||
fn build_collapsed_table_borders(&mut self, builder: &mut DisplayListBuilder) {
|
||||
let Some(SpecificLayoutInfo::TableGridWithCollapsedBorders(table_info)) =
|
||||
&self.fragment.detailed_layout_info
|
||||
&self.fragment.specific_layout_info
|
||||
else {
|
||||
return;
|
||||
};
|
||||
|
|
|
@ -1212,7 +1212,7 @@ impl BoxFragment {
|
|||
|
||||
if let Fragment::Box(box_fragment) = &fragment {
|
||||
if matches!(
|
||||
box_fragment.borrow().detailed_layout_info,
|
||||
box_fragment.borrow().specific_layout_info,
|
||||
Some(SpecificLayoutInfo::TableGridWithCollapsedBorders(_))
|
||||
) {
|
||||
add_fragment(StackingContextSection::CollapsedTableBorders);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue