mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Remove unused inline_size_of_preceding_{left,right}_floats fields from BlockFlow.
This commit is contained in:
parent
5dac1f64c1
commit
247c86f887
1 changed files with 0 additions and 10 deletions
|
@ -511,14 +511,6 @@ pub struct BlockFlow {
|
|||
/// The associated fragment.
|
||||
pub fragment: Fragment,
|
||||
|
||||
/// The sum of the inline-sizes of all logically left floats that precede this block. This is
|
||||
/// used to speculatively lay out block formatting contexts.
|
||||
inline_size_of_preceding_left_floats: Au,
|
||||
|
||||
/// The sum of the inline-sizes of all logically right floats that precede this block. This is
|
||||
/// used to speculatively lay out block formatting contexts.
|
||||
inline_size_of_preceding_right_floats: Au,
|
||||
|
||||
/// Additional floating flow members.
|
||||
pub float: Option<Box<FloatedBlockInfo>>,
|
||||
|
||||
|
@ -548,8 +540,6 @@ impl BlockFlow {
|
|||
None => ForceNonfloatedFlag::ForceNonfloated,
|
||||
}),
|
||||
fragment: fragment,
|
||||
inline_size_of_preceding_left_floats: Au(0),
|
||||
inline_size_of_preceding_right_floats: Au(0),
|
||||
float: float_kind.map(|kind| box FloatedBlockInfo::new(kind)),
|
||||
flags: BlockFlowFlags::empty(),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue