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

Add guidance for mark role #2753

Merged
merged 2 commits into from
Aug 7, 2023
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -929,6 +929,13 @@ <h2><span id="naming_role_guidance_heading">Accessible Name Guidance by Role</sp
Using <code>aria-label</code> is functionally equivalent to providing off-screen text in the contents of the log element, except off-screen text would be announced by screen readers that do not support <code>aria-label</code> on <code>log</code> elements.
</td>
</tr>
<tr>
<td>
<a href="#mark" class="role-reference"><code>mark</code></a>
</td>
<td>Prohibited</td>
<td></td>
</tr>
<tr>
<td>
<a href="#main" class="role-reference"><code>main</code></a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ <h2>All Structural Roles and Their HTML Equivalents</h2>
<th>listitem</th>
<td>li</td>
</tr>
<tr>
<th>mark</th>
<td>mark</td>
</tr>
<tr>
<th>math</th>
<td>No equivalent element</td>
Expand Down
Loading