1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 06:25:01 +00:00

LibHTML: Don't bother updating layout in frameless documents

Before/after the document is attached to a frame, there's no point in
doing any kind of layout, since we can't display the results anywhere.
This commit is contained in:
Andreas Kling 2019-11-30 11:57:41 +01:00
parent 4104f53a94
commit 039fc0f2d1

View file

@ -187,6 +187,9 @@ void Document::update_style()
void Document::update_layout()
{
if (!frame())
return;
layout();
if (on_layout_updated)
on_layout_updated();