1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 07:38:10 +00:00

LibWeb: Add (exclude/include)_from_accessibility_tree

These functions will be used in building the accessibility tree.
This commit is contained in:
Jonah 2022-12-11 10:53:37 -06:00 committed by Sam Atkins
parent ef48bd1878
commit cd95e5f656
3 changed files with 69 additions and 0 deletions

View file

@ -245,6 +245,10 @@ public:
#undef ARIA_IMPL
virtual bool exclude_from_accessibility_tree() const override;
virtual bool include_in_accessibility_tree() const override;
protected:
Element(Document&, DOM::QualifiedName);
virtual void initialize(JS::Realm&) override;