mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Frame::layout() drives everything now, it takes the DOM contained in the frame and puts it through the tree transformations.
19 lines
238 B
C++
19 lines
238 B
C++
#include <LibHTML/DOM/Element.h>
|
|
#include <LibHTML/Layout/LayoutBlock.h>
|
|
|
|
LayoutBlock::LayoutBlock(const Node& node)
|
|
: LayoutNode(&node)
|
|
{
|
|
}
|
|
|
|
LayoutBlock::~LayoutBlock()
|
|
{
|
|
}
|
|
|
|
void LayoutBlock::layout()
|
|
{
|
|
LayoutNode::layout();
|
|
|
|
|
|
}
|