ladybird/Libraries/LibHTML/Layout/LayoutTable.cpp
Andreas Kling 65ad6c35f0 LibHTML: Add typed child/sibling traversal helpers for LayoutNode
Also add some special variants for the table classes, to make it a bit
more pleasant to write table code. :^)
2019-10-18 09:38:12 +02:00

28 lines
546 B
C++

#include <LibHTML/DOM/Element.h>
#include <LibHTML/Layout/LayoutTable.h>
#include <LibHTML/Layout/LayoutTableRow.h>
LayoutTable::LayoutTable(const Element& element, NonnullRefPtr<StyleProperties> style)
: LayoutBlock(&element, move(style))
{
}
LayoutTable::~LayoutTable()
{
}
void LayoutTable::layout()
{
LayoutBlock::layout();
}
LayoutTableRow* LayoutTable::first_row()
{
return first_child_of_type<LayoutTableRow>();
}
const LayoutTableRow* LayoutTable::first_row() const
{
return first_child_of_type<LayoutTableRow>();
}