mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:38:11 +00:00
LibHTML: Add stub classes for basic table layout
This class introduces LayoutTable, LayoutTableRow and LayoutTableCell. These are produced by "display" values table, table-row and table-cell respectively. Note that there's no layout happening yet, I'm just adding the classes.
This commit is contained in:
parent
14f380f87a
commit
41896ff521
9 changed files with 107 additions and 0 deletions
12
Libraries/LibHTML/Layout/LayoutTableCell.h
Normal file
12
Libraries/LibHTML/Layout/LayoutTableCell.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibHTML/Layout/LayoutBlock.h>
|
||||
|
||||
class LayoutTableCell final : public LayoutBlock {
|
||||
public:
|
||||
LayoutTableCell(const Element&, NonnullRefPtr<StyleProperties>);
|
||||
virtual ~LayoutTableCell() override;
|
||||
|
||||
private:
|
||||
virtual const char* class_name() const override { return "LayoutTableCell"; }
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue