1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 01:44:58 +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()
{
}