1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:04:59 +00:00

LibWeb: Remove unused Page::load(LoadRequest&)

This commit is contained in:
Aliaksandr Kalenik 2023-08-24 22:46:32 +02:00 committed by Andreas Kling
parent d559fb8b7e
commit 7dd01b245b
2 changed files with 0 additions and 5 deletions

View file

@ -47,10 +47,6 @@ void Page::load(const AK::URL& url)
(void)top_level_traversable()->navigate(url, *top_level_traversable()->active_document());
}
void Page::load(LoadRequest&)
{
}
void Page::load_html(StringView html, const AK::URL& url)
{
(void)top_level_traversable()->navigate(url, *top_level_traversable()->active_document(), String::from_utf8(html).release_value_but_fixme_should_propagate_errors());