LibWeb: Remove some uneeded navigation error propogation

We should not have any errors to propogate down these paths.
This commit is contained in:
Shannon Booth
2026-03-30 16:39:50 +02:00
committed by Alexander Kalenik
parent 094891fdf2
commit 0086a7899d
Notes: github-actions[bot] 2026-04-01 02:42:27 +00:00
16 changed files with 33 additions and 37 deletions

View File

@@ -19,7 +19,7 @@ PageHost::PageHost(ConnectionFromClient& client)
: m_client(client)
{
auto& first_page = create_page();
Web::HTML::TraversableNavigable::create_a_fresh_top_level_traversable(first_page.page(), URL::about_blank()).release_value_but_fixme_should_propagate_errors();
Web::HTML::TraversableNavigable::create_a_fresh_top_level_traversable(first_page.page(), URL::about_blank());
}
PageClient& PageHost::create_page()