1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:47:47 +00:00

LibWeb: Add Layout::LineBuilder class for incremental line box layout

This class will be used to place items on lines incrementally instead of
the current two-phase approach.
This commit is contained in:
Andreas Kling 2022-01-19 11:57:58 +01:00
parent ae301d2b02
commit 00bde9ca51
4 changed files with 166 additions and 0 deletions

View file

@ -221,6 +221,7 @@ set(SOURCES
Layout/LayoutPosition.cpp
Layout/LineBox.cpp
Layout/LineBoxFragment.cpp
Layout/LineBuilder.cpp
Layout/ListItemBox.cpp
Layout/ListItemMarkerBox.cpp
Layout/Node.cpp