#include #include LayoutTable::LayoutTable(const Element& element, NonnullRefPtr style) : LayoutBlock(&element, move(style)) { } LayoutTable::~LayoutTable() { } void LayoutTable::layout() { LayoutBlock::layout(); }