summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp
AgeCommit message (Collapse)Author
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-01-18LibWeb: Very basic support for CSS flex-directionAndreas Kling
The FFC now supports both vertical and horizontal flex layout, based on the flex-direction property. It's still extremely naive, but at least now you can be naive in two directions! :^) This implementation of flexbox is going to take a lot of work, but at least now we've gotten started.
2021-01-18LibWeb: Add a very naive Layout::FlexFormattingContext :^)Andreas Kling
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! :^)