LibWeb: Make grid containers be Layout::Box

Grid containers were incorrectly represented as BlockContainer before.
Furthermore, GridFormattingContext had a bogus inheritance relationship
with BlockFormattingContext.

This patch brings our architecture closer to spec by making grid
containers be plain boxes and making GFC not inherit from BFC.
This commit is contained in:
Andreas Kling 2023-01-23 15:19:32 +01:00
commit 8fe748bb89
Notes: sideshowbarker 2024-07-17 05:02:42 +09:00
6 changed files with 10 additions and 10 deletions

View file

@ -21,6 +21,7 @@ public:
Block,
Inline,
Flex,
Grid,
Table,
SVG,
};