mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 11:45:06 +00:00
LibWebView+WebContent: Add a WebContent IPC to get a DOM node's HTML
This commit is contained in:
parent
8162dc5ee6
commit
bea11f6d99
5 changed files with 22 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue