WebContent+WebDriver: Inform WebDriver when a window is closed from JS

This hooks into the same PageClient method that closes the UI tab after
an invocation to window.close().
This commit is contained in:
Timothy Flynn 2024-10-05 18:40:55 -04:00 committed by Tim Ledbetter
commit 556a0936dd
Notes: github-actions[bot] 2024-10-06 00:43:38 +00:00
4 changed files with 10 additions and 0 deletions

View file

@ -538,6 +538,9 @@ void PageClient::page_did_close_top_level_traversable()
// FIXME: Rename this IPC call
client().async_did_close_browsing_context(m_id);
if (m_webdriver)
m_webdriver->async_window_closed();
// NOTE: This only removes the strong reference the PageHost has for this PageClient.
// It will be GC'd 'later'.
m_owner.remove_page({}, m_id);