blob: 41133cbd2d9de37ea2d103105eeb521fc4945439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <LibHTML/Layout/LayoutBlock.h>
#include <LibHTML/Layout/LayoutInline.h>
LayoutInline::LayoutInline(const Node& node, RefPtr<StyleProperties> style_properties)
: LayoutNode(&node, move(style_properties))
{
set_inline(true);
}
LayoutInline::~LayoutInline()
{
}
|