1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:37:45 +00:00

Ladybird: Move the initial blank page load to BrowserWindow

Takes care of a FIXME :^)
This commit is contained in:
Karol Kosek 2023-01-08 15:01:26 +01:00 committed by Linus Groh
parent 5e89773937
commit 194ddca24f
3 changed files with 15 additions and 13 deletions

View file

@ -366,6 +366,14 @@ void BrowserWindow::new_tab()
};
tab_ptr->focus_location_editor();
// This is a hack to make the JS console usable in new windows.
// Note we *don't* load the initial page if we are connected to a WebDriver, as the Set URL command may come in very
// quickly, and become replaced by this load.
if (m_webdriver_content_ipc_path.is_empty()) {
// We make it HistoryNavigation so that the initial page doesn't get added to the history.
tab_ptr->navigate("about:blank", Tab::LoadType::HistoryNavigation);
}
}
void BrowserWindow::close_tab(int index)