mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:57:43 +00:00
LibWeb: Add LayoutTableRowGroup to implement display: table-row-group
This commit is contained in:
parent
b4d4d6b32a
commit
28dcef4757
6 changed files with 119 additions and 4 deletions
|
@ -65,6 +65,10 @@ public:
|
|||
|
||||
virtual void split_into_lines(LayoutBlock& container, LayoutMode) override;
|
||||
|
||||
protected:
|
||||
void compute_width();
|
||||
void compute_position();
|
||||
void compute_height();
|
||||
|
||||
private:
|
||||
virtual bool is_block() const override { return true; }
|
||||
|
@ -75,10 +79,6 @@ private:
|
|||
void layout_inline_children(LayoutMode);
|
||||
void layout_block_children(LayoutMode);
|
||||
|
||||
void compute_width();
|
||||
void compute_position();
|
||||
void compute_height();
|
||||
|
||||
Vector<LineBox> m_line_boxes;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue