From 76d2cf8774e6b84476e818faeffad41807b40d0d Mon Sep 17 00:00:00 2001 From: Wilco Fiers Date: Tue, 14 Nov 2023 11:59:06 +0100 Subject: [PATCH] Update aria-required-owned to use gridcell in grid Feedback from the ARIA WG. Passed example 2 needs to use gridcell, not cell. This isn't required by the owned elements thing, but it is a MUST for the [grid role](https://w3c.github.io/aria/#grid). --- _rules/aria-required-owned-element-bc4a75.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_rules/aria-required-owned-element-bc4a75.md b/_rules/aria-required-owned-element-bc4a75.md index 939218e2bbd..fa72ba95baf 100755 --- a/_rules/aria-required-owned-element-bc4a75.md +++ b/_rules/aria-required-owned-element-bc4a75.md @@ -76,12 +76,12 @@ This element with the `list` role only owns elements with the `listitem` role. T #### Passed Example 2 -This element with the `grid` role only owns elements with the `row` role, and the element with the `row` role only owns elements with the `cell` role. The `row` role is one of the [required owned elements][] for `grid`, and `cell` is one of the [required owned elements][] for `row`. +This element with the `grid` role only owns elements with the `row` role, and the element with the `row` role only owns elements with the `gridcell` role. The `row` role is one of the [required owned elements][] for `grid`, and `gridcell` is one of the [required owned elements][] for `row`. ```html - +
Item 1Item 1
```