diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-18 17:33:46 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-18 20:20:13 +0100 |
commit | fd7920fa8f1deae5fb4b96c03d61c5e176cc12bc (patch) | |
tree | d65aa34380507aa87cbf45063781f7e2046d41de /Userland/Libraries/LibWeb/CMakeLists.txt | |
parent | d18bc9ccd21d9bc03d67fca444886b5b18b9acd2 (diff) | |
download | serenity-fd7920fa8f1deae5fb4b96c03d61c5e176cc12bc.zip |
LibWeb: Add a very naive Layout::FlexFormattingContext :^)
This is very dumb and only lays out its child boxes on a horizontal
line with their shrink-to-fit widths.
You have to start somewhere! :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/CMakeLists.txt')
-rw-r--r-- | Userland/Libraries/LibWeb/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/CMakeLists.txt b/Userland/Libraries/LibWeb/CMakeLists.txt index eef44ab9a1..1878872423 100644 --- a/Userland/Libraries/LibWeb/CMakeLists.txt +++ b/Userland/Libraries/LibWeb/CMakeLists.txt @@ -152,6 +152,7 @@ set(SOURCES Layout/ButtonBox.cpp Layout/CanvasBox.cpp Layout/CheckBox.cpp + Layout/FlexFormattingContext.cpp Layout/FormattingContext.cpp Layout/FrameBox.cpp Layout/ImageBox.cpp |