1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:57:44 +00:00

LibWeb: Always add line boxes through LayoutBlock::add_line_box()

Let's not append directly to the line box vector all over the place.
This commit is contained in:
Andreas Kling 2020-08-08 15:07:15 +02:00
parent 7b356c33cb
commit 72347205c4
2 changed files with 5 additions and 6 deletions

View file

@ -757,7 +757,7 @@ NonnullRefPtr<CSS::StyleProperties> LayoutBlock::style_for_anonymous_block() con
LineBox& LayoutBlock::ensure_last_line_box()
{
if (m_line_boxes.is_empty())
m_line_boxes.append(LineBox());
return add_line_box();
return m_line_boxes.last();
}