1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-13 11:51:00 +00:00
serenity/Libraries/LibHTML/Layout/LayoutInline.cpp

11 lines
228 B
C++

#include <LibHTML/DOM/Element.h>
#include <LibHTML/Layout/LayoutInline.h>
LayoutInline::LayoutInline(const Node& node, const StyledNode& styled_node)
: LayoutNode(&node, &styled_node)
{
}
LayoutInline::~LayoutInline()
{
}