mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
17 lines
298 B
C++
17 lines
298 B
C++
![]() |
#include <LibHTML/DOM/Element.h>
|
||
|
#include <LibHTML/Layout/LayoutTable.h>
|
||
|
|
||
|
LayoutTable::LayoutTable(const Element& element, NonnullRefPtr<StyleProperties> style)
|
||
|
: LayoutBlock(&element, move(style))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
LayoutTable::~LayoutTable()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void LayoutTable::layout()
|
||
|
{
|
||
|
LayoutBlock::layout();
|
||
|
}
|