1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:15:06 +00:00

LibWeb: Remove page_did_set_document_in_top_level_browsing_context()

This PageClient callback was never used for anything.
This commit is contained in:
Andreas Kling 2022-08-01 18:25:08 +02:00
parent ffb23db57f
commit 69a45adfbe
3 changed files with 0 additions and 8 deletions

View file

@ -98,9 +98,6 @@ void BrowsingContext::set_active_document(DOM::Document* document)
if (m_page && is_top_level())
m_page->client().page_did_change_title(m_active_document->title());
}
if (m_page)
m_page->client().page_did_set_document_in_top_level_browsing_context(m_active_document);
}
void BrowsingContext::set_viewport_rect(Gfx::IntRect const& rect)