mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
LibWebView+WebContent: Add a WebContent IPC to get a DOM node's HTML
This commit is contained in:
committed by
Andreas Kling
parent
8162dc5ee6
commit
bea11f6d99
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user