diff --git a/Userland/Libraries/LibWeb/Dump.cpp b/Userland/Libraries/LibWeb/Dump.cpp index f9569e2ef4..ea266a441d 100644 --- a/Userland/Libraries/LibWeb/Dump.cpp +++ b/Userland/Libraries/LibWeb/Dump.cpp @@ -814,6 +814,10 @@ void dump_tree(StringBuilder& builder, Painting::Paintable const& paintable, boo if (paintable.layout_node().is_box()) { auto const& paintable_box = static_cast(paintable); builder.appendff(" {}", paintable_box.absolute_border_box_rect()); + + if (paintable_box.has_overflow()) { + builder.appendff(" overflow: {}", paintable_box.scrollable_overflow_rect().value()); + } } builder.append("\n"sv); for (auto const* child = paintable.first_child(); child; child = child->next_sibling()) {