1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 13:15:07 +00:00
serenity/LibHTML/LayoutInline.cpp
2019-06-15 22:49:44 +02:00

11 lines
175 B
C++

#include <LibHTML/Element.h>
#include <LibHTML/LayoutInline.h>
LayoutInline::LayoutInline(Element& element)
: LayoutNode(&element)
{
}
LayoutInline::~LayoutInline()
{
}