LibWeb+LibWebView+WebContent: Remove the built-in Inspector

This commit is contained in:
Timothy Flynn 2025-03-14 16:22:16 -04:00 committed by Alexander Kalenik
commit 810d04b3f4
Notes: github-actions[bot] 2025-03-15 18:10:57 +00:00
34 changed files with 24 additions and 3082 deletions

View file

@ -652,7 +652,7 @@ void ConnectionFromClient::list_style_sheets(u64 page_id)
if (!page.has_value())
return;
async_inspector_did_list_style_sheets(page_id, page->list_style_sheets());
async_did_list_style_sheets(page_id, page->list_style_sheets());
}
void ConnectionFromClient::request_style_sheet_source(u64 page_id, Web::CSS::StyleSheetIdentifier identifier)
@ -1323,11 +1323,6 @@ void ConnectionFromClient::set_user_style(u64 page_id, String source)
page->page().set_user_style(move(source));
}
void ConnectionFromClient::enable_inspector_prototype(u64)
{
Web::HTML::Window::set_inspector_object_exposed(true);
}
void ConnectionFromClient::system_time_zone_changed()
{
JS::clear_system_time_zone_cache();