diff --git a/Libraries/LibWeb/Layout/FrameBox.cpp b/Libraries/LibWeb/Layout/FrameBox.cpp index fb475014e8..79ad0e1815 100644 --- a/Libraries/LibWeb/Layout/FrameBox.cpp +++ b/Libraries/LibWeb/Layout/FrameBox.cpp @@ -84,7 +84,7 @@ void FrameBox::paint(PaintContext& context, PaintPhase phase) context.painter().restore(); #ifdef DEBUG_HIGHLIGHT_FOCUSED_FRAME - if (node().content_frame()->is_focused_frame()) { + if (dom_node().content_frame()->is_focused_frame()) { context.painter().draw_rect(absolute_rect().to(), Color::Cyan); } #endif