mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00
LibWeb: LayoutMode line_break_policy => LayoutMode layout_mode
This commit is contained in:
parent
a8f0e4d56e
commit
35040dd2c4
11 changed files with 41 additions and 41 deletions
|
@ -40,12 +40,12 @@ LayoutDocument::~LayoutDocument()
|
|||
{
|
||||
}
|
||||
|
||||
void LayoutDocument::layout(LayoutMode line_break_policy)
|
||||
void LayoutDocument::layout(LayoutMode layout_mode)
|
||||
{
|
||||
ASSERT(document().frame());
|
||||
rect().set_width(document().frame()->size().width());
|
||||
|
||||
LayoutNode::layout(line_break_policy);
|
||||
LayoutNode::layout(layout_mode);
|
||||
|
||||
ASSERT(!children_are_inline());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue