mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:47:45 +00:00
LibWeb: Run on_load_start/finish callbacks when loading HTML directly
I need this for the upcoming "load-reference-page" debug request. But it generally seems like the correct thing to do. :^)
This commit is contained in:
parent
cb8c4cd2e6
commit
7ba686dcb3
1 changed files with 6 additions and 0 deletions
|
@ -146,6 +146,9 @@ bool FrameLoader::load(const AK::URL& url, Type type)
|
||||||
|
|
||||||
void FrameLoader::load_html(StringView html, const AK::URL& url)
|
void FrameLoader::load_html(StringView html, const AK::URL& url)
|
||||||
{
|
{
|
||||||
|
if (auto* page = browsing_context().page())
|
||||||
|
page->client().page_did_start_loading(url, false);
|
||||||
|
|
||||||
auto& vm = Bindings::main_thread_vm();
|
auto& vm = Bindings::main_thread_vm();
|
||||||
auto response = Fetch::Infrastructure::Response::create(vm);
|
auto response = Fetch::Infrastructure::Response::create(vm);
|
||||||
response->url_list().append(url);
|
response->url_list().append(url);
|
||||||
|
@ -167,6 +170,9 @@ void FrameLoader::load_html(StringView html, const AK::URL& url)
|
||||||
|
|
||||||
auto parser = HTML::HTMLParser::create(document, html, "utf-8");
|
auto parser = HTML::HTMLParser::create(document, html, "utf-8");
|
||||||
parser->run(url);
|
parser->run(url);
|
||||||
|
|
||||||
|
if (auto* page = browsing_context().page())
|
||||||
|
page->client().page_did_finish_loading(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
static DeprecatedString s_resource_directory_url = "file:///res";
|
static DeprecatedString s_resource_directory_url = "file:///res";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue