mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 23:35:07 +00:00

Frame::layout() drives everything now, it takes the DOM contained in the frame and puts it through the tree transformations.
11 lines
183 B
C++
11 lines
183 B
C++
#include <LibHTML/DOM/Element.h>
|
|
#include <LibHTML/Layout/LayoutInline.h>
|
|
|
|
LayoutInline::LayoutInline(const Node& node)
|
|
: LayoutNode(&node)
|
|
{
|
|
}
|
|
|
|
LayoutInline::~LayoutInline()
|
|
{
|
|
}
|