mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 09:57:00 +02: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();
|
|
|
|
|
|
}
|