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