1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:37:35 +00:00

LibWebView+WebContent: Remove unused did_get_dom_node_properties IPC

This is never invoked. The functionality it provides is implemented by
the return value of the `inspect_dom_node` IPC.
This commit is contained in:
Timothy Flynn 2023-11-23 19:12:38 -05:00 committed by Andreas Kling
parent fcaa994d4e
commit 30e96749de
5 changed files with 0 additions and 13 deletions

View file

@ -41,7 +41,6 @@ endpoint WebContentClient
did_request_dismiss_dialog() =|
did_get_source(URL url, DeprecatedString source) =|
did_get_dom_tree(DeprecatedString dom_tree) =|
did_get_dom_node_properties(i32 node_id, DeprecatedString computed_style, DeprecatedString resolved_style, DeprecatedString custom_properties, DeprecatedString node_box_sizing_json, DeprecatedString aria_properties_state) =|
did_get_accessibility_tree(DeprecatedString accessibility_tree) =|
did_change_favicon(Gfx::ShareableBitmap favicon) =|
did_request_all_cookies(URL url) => (Vector<Web::Cookie::Cookie> cookies)