1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 16:07:45 +00:00

LibWeb: Call the FlexFormattingContext context box "flow_container"

This is what the spec calls it and makes the code much less ambiguous.
This commit is contained in:
Andreas Kling 2021-10-13 19:59:15 +02:00
parent ca02d112a5
commit 674b6f5385
2 changed files with 39 additions and 39 deletions

View file

@ -14,7 +14,7 @@ struct FlexItem;
class FlexFormattingContext final : public FormattingContext {
public:
FlexFormattingContext(Box& containing_block, FormattingContext* parent);
FlexFormattingContext(Box& flex_container, FormattingContext* parent);
~FlexFormattingContext();
virtual bool inhibits_floating() const override { return true; }