about summary refs log tree commit diff stats
path: root/test/layout/intrinsic-min-width-overflows-parent-perc-width-after-float.color.expected
Commit message (Collapse)AuthorAgeFilesLines
* layout: fix bottom margin handling for root blocksbptato2025-03-071-0/+1
| | | | | | I've also refactored the code a bit, so it's both easier to understand and more efficient. (In particular, BlockLayoutState no longer has to store marginBottom.)
* render: actually fix the "extra unnecessary line" bugbptato2025-01-211-1/+0
| | | | Plus remove addLines, it's no longer very useful.
* layout: propagate intrinsic minimum heightbptato2024-12-171-0/+4
Necessary for flex. Previously we just used the actual height, but that didn't account for boxes that size themselves depending on the available height (mainly just images for now). This also irons out intrinsic min width calculation somewhat, squashing several bugs. I hope it works well. It is a significant change in size calculation, so maybe there are still new bugs lurking.