1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:48:11 +00:00

LibWeb: Use FrameLoader to load iframes :^)

This commit is contained in:
Andreas Kling 2020-06-06 13:10:11 +02:00
parent 075bd75859
commit 5c0ee72b30
3 changed files with 9 additions and 16 deletions

View file

@ -69,6 +69,8 @@ void Frame::set_size(const Gfx::Size& size)
if (m_size == size)
return;
m_size = size;
if (m_document)
m_document->layout();
}
void Frame::set_viewport_rect(const Gfx::Rect& rect)