diff --git a/index.html b/index.html index d283cff83..200a299fa 100644 --- a/index.html +++ b/index.html @@ -13479,6 +13479,14 @@

Relationships in the Accessibility Tree

<div id="child4"> <div role="listitem">Accessibility Child 4</div> </div> + +

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

+
+<div role="list">
+  <div role="listitem" aria-hidden="true">Excluded element</div>
+  <div role="listitem" id="reparented">Reparented element</div>
+</div>
+<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: