Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Editorial] - [d0f69e] Table header cell has assigned cells - Passed Example 2-4 improvement (acc name) #2267

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _rules/table-header-cell-has-assigned-cells-d0f69e.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ This `th` element has an assigned `td` element.
Each of the 2 `span` elements with role of `columnheader` has assigned `span` elements with a role of `cell`.

```html
<div role="table">
<div role="table" aria-label="Temperatures">
<div role="rowgroup">
<div role="row">
<span role="columnheader">Month</span>
Expand Down Expand Up @@ -125,7 +125,7 @@ Each of the 2 `th` elements has an assigned `td` element because this `td` eleme
Each of the 4 `th` elements has an assigned `td` element, within the same `table` element having a [semantic role][] of `grid`.

```html
<table role="grid">
<table role="grid" aria-label="Meal times">
<thead>
<tr>
<td></td>
Expand Down