about summary refs log tree commit diff stats
path: root/test/layout/float-text-align-right.html
Commit message (Collapse)AuthorAgeFilesLines
* layout: inline fixes & improvementsbptato2024-06-271-0/+4
* fix text-align breaking down in the presence of floats * improve (and simplify) background color area painting This greatly simplifies inline layout by removing the additional text-align atom movement code and replacing it with a full re-layout when needed. That re-layout only occurs in (rare) cases where the text is likely to be relatively short anyway, so it's probably a win in any remotely realistic layout. This has also made it possible to at last merge the last three passes (horizontal/vertical alignment and background painting) and drop that weird synchronized tree + vector traversal.