1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:27:35 +00:00

LibWeb: Cache a pointer to the containing block state in IFC

This commit is contained in:
Andreas Kling 2022-07-09 20:45:55 +02:00
parent 9784a567d2
commit 7713198e9c
2 changed files with 11 additions and 11 deletions

View file

@ -33,6 +33,8 @@ public:
private:
void generate_line_boxes(LayoutMode);
void apply_justification_to_fragments(FormattingState::NodeState const& containing_block_state, CSS::TextJustify, LineBox&, bool is_last_line);
FormattingState::NodeState const& m_containing_block_state;
};
}