ladybird/LibHTML/Layout/LayoutInline.cpp

12 lines
183 B
C++
Raw Normal View History

2019-06-15 18:41:15 -03:00
#include <LibHTML/DOM/Element.h>
#include <LibHTML/Layout/LayoutInline.h>
LayoutInline::LayoutInline(const Node& node)
: LayoutNode(&node)
{
}
LayoutInline::~LayoutInline()
{
}