mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:38:11 +00:00
LibWeb: Early return from update_layout() if document is not active
This commit is contained in:
parent
80a06fa672
commit
c3e2a40b76
1 changed files with 3 additions and 0 deletions
|
@ -948,6 +948,9 @@ static void propagate_overflow_to_viewport(Element& root_element, Layout::Viewpo
|
|||
|
||||
void Document::update_layout()
|
||||
{
|
||||
if (!is_active())
|
||||
return;
|
||||
|
||||
// NOTE: If our parent document needs a relayout, we must do that *first*.
|
||||
// This is necessary as the parent layout may cause our viewport to change.
|
||||
if (browsing_context() && browsing_context()->container())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue