mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 17:43:22 +00:00
12 lines
259 B
C++
12 lines
259 B
C++
![]() |
#include <LibHTML/DOM/Element.h>
|
||
|
#include <LibHTML/Layout/LayoutTableCell.h>
|
||
|
|
||
|
LayoutTableCell::LayoutTableCell(const Element& element, NonnullRefPtr<StyleProperties> style)
|
||
|
: LayoutBlock(&element, move(style))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
LayoutTableCell::~LayoutTableCell()
|
||
|
{
|
||
|
}
|