
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.
11 lines
259 B
C++
11 lines
259 B
C++
#include <LibHTML/DOM/Element.h>
|
|
#include <LibHTML/Layout/LayoutTableCell.h>
|
|
|
|
LayoutTableCell::LayoutTableCell(const Element& element, NonnullRefPtr<StyleProperties> style)
|
|
: LayoutBlock(&element, move(style))
|
|
{
|
|
}
|
|
|
|
LayoutTableCell::~LayoutTableCell()
|
|
{
|
|
}
|