1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:17:36 +00:00

LibWeb: Add Function To Build Accessiblity Tree

With this patch, the accessibility tree can be build from the root
node of a document. This can then be serialzed and sent to (soon
to come) consumers.
This commit is contained in:
Jonah 2022-12-11 12:38:27 -06:00 committed by Sam Atkins
parent cd95e5f656
commit 3eef54823a
4 changed files with 118 additions and 0 deletions

View file

@ -136,6 +136,7 @@ namespace Web::DOM {
class AbstractRange;
class AbortController;
class AbortSignal;
class AccessibilityTreeNode;
class Attr;
class CDATASection;
class CharacterData;