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

limit the allowed roles on img elements #212

Merged
merged 2 commits into from
Feb 15, 2020
Merged
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
31 changes: 21 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1108,17 +1108,29 @@ <h2 id="docconformance">
</tr>
<tr id="el-img" tabindex="-1">
<td>
<code><a>img</a> with <a data-cite=
<code><a>img</a></code> with <code><a data-cite=
"html/embedded-content.html#attr-img-alt">alt</a>="some text"</code>
</td>
<td>
<code>role=<a href="#index-aria-img">img</a></code>
</td>
<td>
<p>
<a><strong>Any</strong> `role`</a> except
<a href="#index-aria-none">`none`</a>
or <a href="#index-aria-presentation">`presentation`</a>.
Roles:
<a href="#index-aria-button">`button`</a>,
<a href="#index-aria-checkbox">`checkbox`</a>,
<a href="#index-aria-link">`link`</a>,
<a href="#index-aria-menuitem">`menuitem`</a>,
<a href="#index-aria-menuitemcheckbox">`menuitemcheckbox`</a>,
<a href="#index-aria-menuitemradio">`menuitemradio`</a>,
<a href="#index-aria-option">`option`</a>,
<a href="#index-aria-progressbar">`progressbar`</a>,
<a href="#index-aria-scrollbar">`scrollbar`</a>,
<a href="#index-aria-separator">`separator`</a>,
<a href="#index-aria-slider">`slider`</a>,
<a href="#index-aria-switch">`switch`</a>,
<a href="#index-aria-tab">`tab`</a> or
<a href="#index-aria-treeitem">`treeitem`</a>
</p>
<p>
<a href="#index-aria-global">Global `aria-*` attributes</a> and
Expand All @@ -1129,7 +1141,7 @@ <h2 id="docconformance">
</tr>
<tr id="el-img-empty-alt" tabindex="-1">
<td>
<code><a>img</a> with <a data-cite=
<code><a>img</a></code> with <code><a data-cite=
"html/embedded-content.html#attr-img-alt">alt</a>=""</code>
</td>
<td>
Expand All @@ -1149,19 +1161,18 @@ <h2 id="docconformance">
</tr>
<tr id="el-img-no-alt" tabindex="-1">
<td>
<code><a>img</a> with no <a data-cite="html/images.html#unknown-images">alt</a>=""</code>
<code><a>img</a></code> without <code><a data-cite="html/images.html#unknown-images">alt</a></code> attribute
</td>
<td>
<code>role=<a href="#index-aria-img">img</a></code>
</td>
<td>
<p>
<a><strong>Any</strong> `role`</a>
If not provided an author defined accessible name by other methods: <strong class="nosupport">No `role`</strong>, and <strong>no `aria-*` attributes</strong> except
`aria-hidden`.
</p>
<p>
<a href="#index-aria-global">Global `aria-*` attributes</a> and
any `aria-*` attributes applicable to the allowed roles and
implied role (if any).
Otherwise, if the `img` has an author defined accessible name, see <a href="#el-img">`img alt="some text"`</a>.
</p>
</td>
</tr>
Expand Down