Skip to content

Commit 15a48b1

Browse files
WilcoFiersJym77
andauthored
Update aria-required-owned to use gridcell in grid (#2137)
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). Co-authored-by: Jean-Yves Moyen <jym@siteimprove.com>
1 parent c1ecd49 commit 15a48b1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_rules/aria-required-owned-element-bc4a75.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ This element with the `list` role only owns elements with the `listitem` role. T
7676

7777
#### Passed Example 2
7878

79-
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`.
79+
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`.
8080

8181
```html
8282
<table role="grid">
8383
<tr role="row">
84-
<td role="cell">Item 1</td>
84+
<td role="gridcell">Item 1</td>
8585
</tr>
8686
</table>
8787
```

0 commit comments

Comments
 (0)