about summary refs log tree commit diff stats
path: root/test/layout/center-in-inline.expected
Commit message (Collapse)AuthorAgeFilesLines
* layout: do not generate anonymous inline boxesbptato2025-01-251-0/+3
Anonymous inline boxes were blocking progress on layout caching, so they are now gone. Instead, we handle them in layoutInline (which meanwhile has spaghettified to beyond comprehension... now it's a special case of inner BlockBox (kind of?) - incredibly, it still passes tests :P) This seems to match what major browsers do as well; some test cases were updated to reflect the "improved" rendering this brings. Next I'd like to remove anonymous table boxes by generating them in cascade. Then it should be straightforward enough to at least reuse flow roots on relayout. (And clean up flow layout...)