summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/FrameBox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/FrameBox.cpp')
-rw-r--r--Userland/Libraries/LibWeb/Layout/FrameBox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/FrameBox.cpp b/Userland/Libraries/LibWeb/Layout/FrameBox.cpp
index f3210ad941..d0c8b432c6 100644
--- a/Userland/Libraries/LibWeb/Layout/FrameBox.cpp
+++ b/Userland/Libraries/LibWeb/Layout/FrameBox.cpp
@@ -45,7 +45,7 @@ FrameBox::~FrameBox()
void FrameBox::prepare_for_replaced_layout()
{
- ASSERT(dom_node().content_frame());
+ VERIFY(dom_node().content_frame());
set_has_intrinsic_width(true);
set_has_intrinsic_height(true);
@@ -90,7 +90,7 @@ void FrameBox::did_set_rect()
{
ReplacedBox::did_set_rect();
- ASSERT(dom_node().content_frame());
+ VERIFY(dom_node().content_frame());
dom_node().content_frame()->set_size(size().to_type<int>());
}