mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 05:45:06 +00:00
11 lines
170 B
C++
11 lines
170 B
C++
#include <LibHTML/Element.h>
|
|
#include <LibHTML/LayoutBlock.h>
|
|
|
|
LayoutBlock::LayoutBlock(Element& element)
|
|
: LayoutNode(&element)
|
|
{
|
|
}
|
|
|
|
LayoutBlock::~LayoutBlock()
|
|
{
|
|
}
|