ladybird/Libraries/LibHTML/Layout/LayoutTableCell.cpp

12 lines
259 B
C++
Raw Normal View History

#include <LibHTML/DOM/Element.h>
#include <LibHTML/Layout/LayoutTableCell.h>
LayoutTableCell::LayoutTableCell(const Element& element, NonnullRefPtr<StyleProperties> style)
: LayoutBlock(&element, move(style))
{
}
LayoutTableCell::~LayoutTableCell()
{
}