1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 19:35:06 +00:00

LibWebView+WebContent: Expose the Accessibility Tree to Other Processes

This patch also stubs out notify_server_did_get_accessiblity_tree in
ladybird since ViewImplementation now has it. However, this feature
is still immature, so just stubbing out in ladybird for now. Once we
have more robust support in Serenity (namely ARIA properties/state
and accessible names and descriptions) we can port this
functionality over.
This commit is contained in:
Jonah 2022-12-07 19:30:37 -06:00 committed by Sam Atkins
parent a469bbd178
commit 367b1634fd
11 changed files with 37 additions and 0 deletions

View file

@ -1093,3 +1093,8 @@ void WebContentView::notify_server_did_finish_handling_input_event(bool event_wa
// we don't need to do anything here. But we'll need to once we start asking web content first.
(void)event_was_accepted;
}
void WebContentView::notify_server_did_get_accessibility_tree(DeprecatedString const&)
{
dbgln("TODO: support accessibility tree in Ladybird");
}