diff --git a/_rules/aria-required-owned-element-bc4a75.md b/_rules/aria-required-owned-element-bc4a75.md
index c5c3ee52b0..88555201bb 100755
--- a/_rules/aria-required-owned-element-bc4a75.md
+++ b/_rules/aria-required-owned-element-bc4a75.md
@@ -4,7 +4,7 @@ name: ARIA required owned elements
rules_format: 1.1
rule_type: atomic
description: |
- This rule checks that an element with an explicit role that restricts which elements it can own only owns such elements.
+ This rule checks that an element with a semantic role that restricts which elements it can own only owns such elements.
accessibility_requirements:
wcag20:1.3.1: # Info and Relationships (A)
forConformance: true
@@ -27,7 +27,7 @@ acknowledgments:
## Applicability
-This rule applies to any [HTML or SVG element][] that is [included in the accessibility tree][] and has a [WAI-ARIA 1.2][] [explicit semantic role][] with [required owned elements][], except if the element has an [inclusive ancestor][] in the accessibility tree with an `aria-busy` [attribute value][] of `true`.
+This rule applies to any [HTML or SVG element][] that is [included in the accessibility tree][] and has a [WAI-ARIA 1.2][] [semantic role][] with [required owned elements][], except if the element has an [inclusive ancestor][] in the accessibility tree with an `aria-busy` [attribute value][] of `true`.
## Expectation
@@ -45,7 +45,7 @@ The applicability of this rule is limited to the [WAI-ARIA 1.2 Recommendation][w
### Assumptions
-If the [explicit semantic role][] on the target element is incorrectly used, and any relationships between elements are already programmatically determinable, failing this rule may not result in accessibility issues for users of assistive technologies, and it should then not be considered a failure under [WCAG success criterion 1.3.1 Info and Relationships](https://www.w3.org/TR/WCAG22/#info-and-relationships).
+If the [semantic role][] on the target element is incorrectly used, and any relationships between elements are already programmatically determinable, failing this rule may not result in accessibility issues for users of assistive technologies, and it should then not be considered a failure under [WCAG success criterion 1.3.1 Info and Relationships](https://www.w3.org/TR/WCAG22/#info-and-relationships).
### Accessibility Support
@@ -93,8 +93,8 @@ This element with the `menu` role only owns elements with the `menuitem`, `menui
```html
-
-
Item 1
+
+
Item 1
Item 2
Item 3
@@ -102,7 +102,7 @@ This element with the `menu` role only owns elements with the `menuitem`, `menui
#### Passed Example 4
-This element with the `tablist` role only owns elements with the `tab` role. The `tab` role is one of the [required owned elements][] for `tablist`. The `li` element is ignored because it has an [explicit semantic role][] of `none`.
+This element with the `tablist` role only owns elements with the `tab` role. The `tab` role is one of the [required owned elements][] for `tablist`. The `li` element is ignored because it has an [semantic role][] of `none`.
```html
@@ -139,6 +139,56 @@ This element with the `menu` role only owns an element with a `group` role. The
```
+#### Passed Example 7
+
+The element `ul` with an implicit `list` role owns an element `li` with an implicit `listitem` role.
+
+```html
+
+
Item 1
+
+```
+
+#### Passed Example 8
+
+The element `select` with an implicit `listbox` role owns elements `option` with implicit `option` roles.
+
+```html
+
+```
+
+#### Passed Example 9
+
+The element `table` with an implicit `table` role owns an element `tr` with implicit `row` role that in turn owns elements `td` with implicit `cell` roles.
+
+```html
+
+
+
Item 1
+
Item 2
+
Item 3
+
+
+```
+
+#### Passed Example 10
+
+The element `table` with an explicit `treegrid` role owns an element `tr` with implicit `row` role that in turn owns elements `td` with implicit `gridcell` roles.
+
+```html
+
+
+
Item 1
+
Item 2
+
Item 3
+
+
+```
+
### Failed
#### Failed Example 1
@@ -225,6 +275,43 @@ This element with the `list` role owns an element with the `listitem` role and a
```
+#### Failed Example 8
+
+This element with the `menu` role owns `option` elements with implicit `option` role. The `option` role is not one of the [required owned elements][] for `menu`.
+
+```html
+
+```
+
+#### Failed Example 9
+
+This element with the `menu` role owns `tr` elements with an explicit `list` role. The `list` role is not one of the [required owned elements][] for `menu`. In addition, the `tr` element with the explicit `list` role owns `td` elements with explicit `menuitem` roles. The `menuitem` role is not one of the [required owned elements][] for `list`.
+
+```html
+
+
+
Item 1
+
Item 2
+
Item 3
+
+
+```
+
+#### Failed Example 10
+
+This element with the implicit `list` role owns an element with the implicit `generic` role. The `generic` role is not one of the [required owned elements][] for `list`. Note that this example is for demonstration purpose only because it's not a valid HTML 5 structure.
+
+```html
+
+
+
+
+```
+
### Inapplicable
#### Inapplicable Example 1
@@ -237,12 +324,12 @@ This element with the `list` role is not included in the accessibility tree beca
#### Inapplicable Example 2
-This `ul` element does not have an [explicit semantic role][].
+This `div` element with the `list` role is not included in the accessibility tree because it is hidden .
```html
-
-
Item 1
-
+
+
Item 1
+
```
#### Inapplicable Example 3
@@ -269,7 +356,6 @@ This element with the `menu` role has an `aria-busy` attribute set to `true`.
[required owned elements]: https://www.w3.org/TR/wai-aria-1.2/#mustContain 'Define Required owned element'
[owns]: #owned-by
[owned by]: #owned-by
-[explicit semantic role]: #explicit-role
[semantic role]: #semantic-role
[included in the accessibility tree]: #included-in-the-accessibility-tree
[wai-aria 1.2]: https://www.w3.org/TR/wai-aria-1.2/