
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.
16 lines
312 B
C++
16 lines
312 B
C++
#include <LibHTML/DOM/Element.h>
|
|
#include <LibHTML/Layout/LayoutTableRow.h>
|
|
|
|
LayoutTableRow::LayoutTableRow(const Element& element, NonnullRefPtr<StyleProperties> style)
|
|
: LayoutBox(&element, move(style))
|
|
{
|
|
}
|
|
|
|
LayoutTableRow::~LayoutTableRow()
|
|
{
|
|
}
|
|
|
|
void LayoutTableRow::layout()
|
|
{
|
|
LayoutBox::layout();
|
|
}
|