1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:57:35 +00:00

LibWebView+WebContent: Add a WebContent IPC to clone a DOM node

This commit is contained in:
Timothy Flynn 2023-12-07 11:12:43 -05:00 committed by Andreas Kling
parent 111e53a2f6
commit c6a11a77b5
5 changed files with 20 additions and 0 deletions

View file

@ -82,6 +82,7 @@ private:
virtual void replace_dom_node_attribute(i32 node_id, String const& name, Vector<WebView::Attribute> const& replacement_attributes) override;
virtual Messages::WebContentServer::CreateChildElementResponse create_child_element(i32 node_id) override;
virtual Messages::WebContentServer::CreateChildTextNodeResponse create_child_text_node(i32 node_id) override;
virtual Messages::WebContentServer::CloneDomNodeResponse clone_dom_node(i32 node_id) override;
virtual void remove_dom_node(i32 node_id) override;
virtual Messages::WebContentServer::GetDomNodeHtmlResponse get_dom_node_html(i32 node_id) override;