#include #include #include LayoutTableRow::LayoutTableRow(const Element& element, NonnullRefPtr style) : LayoutBox(&element, move(style)) { } LayoutTableRow::~LayoutTableRow() { } void LayoutTableRow::layout() { LayoutBox::layout(); } LayoutTableCell* LayoutTableRow::first_cell() { return first_child_of_type(); } const LayoutTableCell* LayoutTableRow::first_cell() const { return first_child_of_type(); } LayoutTableRow* LayoutTableRow::next_row() { return next_sibling_of_type(); } const LayoutTableRow* LayoutTableRow::next_row() const { return next_sibling_of_type(); }