mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-23 19:00:59 +00:00
LibDevTools+LibWebView: Implement requests to delete DOM nodes
This commit is contained in:
parent
bdb31b029a
commit
29122786b9
Notes:
github-actions[bot]
2025-03-08 00:27:06 +00:00
Author: https://github.com/trflynn89
Commit: 29122786b9
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3850
5 changed files with 152 additions and 0 deletions
|
@ -43,6 +43,10 @@ private:
|
|||
JsonValue serialize_node(JsonObject const&) const;
|
||||
Optional<JsonObject const&> find_node_by_selector(JsonObject const& node, StringView selector);
|
||||
|
||||
Optional<JsonObject const&> previous_sibling_for_node(JsonObject const& node);
|
||||
Optional<JsonObject const&> next_sibling_for_node(JsonObject const& node);
|
||||
Optional<JsonObject const&> remove_node(JsonObject const& node);
|
||||
|
||||
void new_dom_node_mutation(WebView::Mutation);
|
||||
JsonValue serialize_mutations();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue