2019-10-06 06:14:13 -03:00
|
|
|
#include <LibHTML/DOM/Element.h>
|
2019-10-03 10:20:13 -03:00
|
|
|
#include <LibHTML/Layout/LayoutBlock.h>
|
2019-06-15 18:41:15 -03:00
|
|
|
#include <LibHTML/Layout/LayoutInline.h>
|
2019-06-15 17:49:44 -03:00
|
|
|
|
2019-10-06 06:14:13 -03:00
|
|
|
LayoutInline::LayoutInline(const Element& element, NonnullRefPtr<StyleProperties> style)
|
2019-10-15 11:48:38 -03:00
|
|
|
: LayoutNodeWithStyleAndBoxModelMetrics(&element, move(style))
|
2019-06-15 17:49:44 -03:00
|
|
|
{
|
2019-10-05 17:07:45 -03:00
|
|
|
set_inline(true);
|
2019-06-15 17:49:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LayoutInline::~LayoutInline()
|
|
|
|
|
{
|
|
|
|
|
}
|