summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/StyleValues/GridAreaShorthandStyleValue.h
AgeCommit message (Collapse)Author
2023-05-06LibWeb: Propagate errors from StyleValue constructionSam Atkins
Turns out we create a lot of these, mostly from places that don't return ErrorOr. The yak stack grows.
2023-03-28LibWeb: Declare defaulted style value comparision operators inlineAndrew Kaster
Some versions of clang, such as Apple clang-1400.0.29.202 error out on the previous out of line operators. Explicitly defaulting comparison operators out of line is allowed per P2085R0, but was checked in clang before version 15 in C++20 mode.
2023-03-25LibWeb: Split GridAreaShorthandStyleValue out of StyleValue.{h,cpp}Sam Atkins