LibWebView+WebContent: Add a WebContent IPC to get a DOM node's HTML

This commit is contained in:
Timothy Flynn 2023-12-06 10:36:27 -05:00 committed by Andreas Kling
parent 8162dc5ee6
commit bea11f6d99
Notes: sideshowbarker 2024-07-17 05:13:53 +09:00
5 changed files with 22 additions and 0 deletions

View file

@ -206,6 +206,11 @@ void ViewImplementation::remove_dom_node(i32 node_id)
client().async_remove_dom_node(node_id);
}
Optional<String> ViewImplementation::get_dom_node_html(i32 node_id)
{
return client().get_dom_node_html(node_id);
}
void ViewImplementation::debug_request(DeprecatedString const& request, DeprecatedString const& argument)
{
client().async_debug_request(request, argument);