mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Auto merge of #29883 - Loirooriol:float-inline-size, r=mrobinson
Implement BlockLevelBox::inline_content_sizes for floats This improves #29874, but `BlockContainer::inline_content_sizes` will still need more changes in order to correctly handle sequences of floats. <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [ ] These changes fix #___ (GitHub issue number if applicable) <!-- Either: --> - [X] There are tests for these changes OR - [ ] These changes do not require tests because ___ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
This commit is contained in:
commit
47fb54fc54
37 changed files with 3 additions and 77 deletions
|
@ -388,10 +388,9 @@ impl BlockLevelBox {
|
|||
Self::Independent(independent) => independent
|
||||
.outer_inline_content_sizes(layout_context, containing_block_writing_mode),
|
||||
BlockLevelBox::OutOfFlowAbsolutelyPositionedBox(_) => ContentSizes::zero(),
|
||||
BlockLevelBox::OutOfFlowFloatBox(_box_) => {
|
||||
// TODO: Actually implement that.
|
||||
ContentSizes::zero()
|
||||
},
|
||||
BlockLevelBox::OutOfFlowFloatBox(float_box) => float_box
|
||||
.contents
|
||||
.outer_inline_content_sizes(layout_context, containing_block_writing_mode),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue