
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
28 lines
404 B
C++
28 lines
404 B
C++
#include <LibHTML/DOM/Element.h>
|
|
#include <LibHTML/Layout/LayoutBlock.h>
|
|
|
|
LayoutBlock::LayoutBlock(const Node& node, const StyledNode& styled_node)
|
|
: LayoutNode(&node, styled_node)
|
|
{
|
|
}
|
|
|
|
LayoutBlock::~LayoutBlock()
|
|
{
|
|
}
|
|
|
|
void LayoutBlock::layout()
|
|
{
|
|
compute_width();
|
|
|
|
LayoutNode::layout();
|
|
|
|
compute_height();
|
|
}
|
|
|
|
void LayoutBlock::compute_width()
|
|
{
|
|
}
|
|
|
|
void LayoutBlock::compute_height()
|
|
{
|
|
}
|