1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 09:58:14 +00:00

LibWeb: Delete BrowsingContext::set_active_document()

Superseded by Document::make_active()
This commit is contained in:
Aliaksandr Kalenik 2023-09-04 00:04:09 +02:00 committed by Andreas Kling
parent 2fbb6ae520
commit fda420875d
3 changed files with 2 additions and 34 deletions

View file

@ -166,7 +166,7 @@ void FrameLoader::load_html(StringView html, const AK::URL& url)
.navigable = nullptr,
};
auto document = DOM::Document::create_and_initialize(DOM::Document::Type::HTML, "text/html", navigation_params).release_value_but_fixme_should_propagate_errors();
browsing_context().set_active_document(document);
// browsing_context().set_active_document(document);
auto parser = HTML::HTMLParser::create(document, html, "utf-8");
parser->run(url);
@ -334,7 +334,7 @@ void FrameLoader::resource_did_load()
document->set_content_type(MUST(String::from_deprecated_string(resource()->mime_type())));
browsing_context().set_active_document(document);
// browsing_context().set_active_document(document);
if (auto* page = browsing_context().page())
page->client().page_did_create_new_document(*document);