2019-06-15 18:41:15 -03:00
|
|
|
#include <LibHTML/Layout/LayoutDocument.h>
|
2019-06-15 17:49:44 -03:00
|
|
|
|
2019-09-21 09:32:17 -03:00
|
|
|
LayoutDocument::LayoutDocument(const Document& document, StyleProperties&& style_properties)
|
|
|
|
|
: LayoutBlock(&document, move(style_properties))
|
2019-06-15 17:49:44 -03:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LayoutDocument::~LayoutDocument()
|
|
|
|
|
{
|
|
|
|
|
}
|
2019-06-16 16:35:03 -03:00
|
|
|
|
|
|
|
|
void LayoutDocument::layout()
|
|
|
|
|
{
|
|
|
|
|
rect().set_width(style().size().width());
|
|
|
|
|
LayoutNode::layout();
|
|
|
|
|
}
|