mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
19 lines
241 B
C++
19 lines
241 B
C++
#include <LibHTML/DOM/Element.h>
|
|
#include <LibHTML/Layout/LayoutBlock.h>
|
|
|
|
LayoutBlock::LayoutBlock(Element& element)
|
|
: LayoutNode(&element)
|
|
{
|
|
}
|
|
|
|
LayoutBlock::~LayoutBlock()
|
|
{
|
|
}
|
|
|
|
void LayoutBlock::layout()
|
|
{
|
|
LayoutNode::layout();
|
|
|
|
|
|
}
|