diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/FrameBox.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/FrameBox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/FrameBox.cpp b/Userland/Libraries/LibWeb/Layout/FrameBox.cpp index 6fcb0161eb..fb98c9afc2 100644 --- a/Userland/Libraries/LibWeb/Layout/FrameBox.cpp +++ b/Userland/Libraries/LibWeb/Layout/FrameBox.cpp @@ -33,7 +33,7 @@ void FrameBox::did_set_rect() ReplacedBox::did_set_rect(); VERIFY(dom_node().nested_browsing_context()); - dom_node().nested_browsing_context()->set_size(paint_box()->content_size()); + dom_node().nested_browsing_context()->set_size(paintable_box()->content_size()); } JS::GCPtr<Painting::Paintable> FrameBox::create_paintable() const |