From b62962ec146edabc5783a9fb544fe3f3488f52ae Mon Sep 17 00:00:00 2001 From: Valerie Young Date: Fri, 18 Aug 2023 10:43:44 -0700 Subject: [PATCH] Try to start with a simplier definition --- index.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 200a299fa..426321cac 100644 --- a/index.html +++ b/index.html @@ -13456,17 +13456,18 @@

Including Elements in the Accessibility Tree

Relationships in the Accessibility Tree

The following terms are used to describe relationships between DOM elements.

-

The accessibility children of a DOM element are all of the following (excluding those DOM elements that have no corresponding accessible object because they have been excluded from the accessibility tree, and excluding any elements whose corresponding accessible object have been reparented in the accessibility tree via aria-owns):

+

The accessibility children of a DOM element are all of the children of that element's corresponding accessible object in the accessibility tree. In terms of the DOM, that includes the following:

+

Excluding those DOM elements that have no corresponding accessible object because they have been excluded from the accessibility tree, and excluding any elements whose corresponding accessible object have been reparented in the accessibility tree via aria-owns.

In the following example, the list element has four accessibility children:

 <div role="list" aria-owns="child3 child4">
@@ -13489,7 +13490,7 @@ 

Relationships in the Accessibility Tree

<div aria-owns="reparented"></div>

The accessibility descendants of a DOM element are all DOM elements which correspond to descendants of the corresponding accessible object in the accessibility tree.

-

The accessibility parent of a DOM element is one of the following:

+

The accessibility parent of a DOM element is the parent of the corresponding accessible object in the accessibility tree. In terms of the DOM, the accessibility parent is one of the following: