mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb+LibWebView+WebContent: Remove the built-in Inspector
This commit is contained in:
parent
1c696e7893
commit
810d04b3f4
Notes:
github-actions[bot]
2025-03-15 18:10:57 +00:00
Author: https://github.com/trflynn89
Commit: 810d04b3f4
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3956
34 changed files with 24 additions and 3082 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue