diff options
Diffstat (limited to 'Userland/Services/WebContent/ConnectionFromClient.cpp')
-rw-r--r-- | Userland/Services/WebContent/ConnectionFromClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WebContent/ConnectionFromClient.cpp b/Userland/Services/WebContent/ConnectionFromClient.cpp index ad66641500..fa3386f260 100644 --- a/Userland/Services/WebContent/ConnectionFromClient.cpp +++ b/Userland/Services/WebContent/ConnectionFromClient.cpp @@ -190,7 +190,7 @@ void ConnectionFromClient::debug_request(const String& request, const String& ar if (request == "dump-stacking-context-tree") { if (auto* doc = page().top_level_browsing_context().active_document()) { if (auto* icb = doc->layout_node()) { - if (auto* stacking_context = icb->stacking_context()) + if (auto* stacking_context = icb->m_paint_box->stacking_context()) stacking_context->dump(); } } |