-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
For issue #447, Added the following note below the roles, states, and properties table on the navigation menubar example page: > Currently, using aria-expanded on elements with role menuitem triggers HTML validation errors because the ARIA specification does not yet support doing so. > The ARIA working group plans to resolve this issue in the next version of the specification. > Until a version of ARIA that resolves the issue becomes a W3C recommendation, it is safe to ignore these validation errors. > Alternatively, since only a few browser and assistive technology combinations exploit this feature of the pattern, it can be omitted from implementations. IN the two rows of the table about aria-expanded, added text to see note below.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -561,7 +561,7 @@ <h3 id="rps2_label">Submenu</h3> | |
<td> | ||
<code>a</code> | ||
</td> | ||
<td>Indicates the submenu is open.</td> | ||
<td>Indicates the submenu is open. (<strong>See note below.</strong>)</td> | ||
</tr> | ||
<tr> | ||
<td></td> | ||
|
@@ -571,7 +571,7 @@ <h3 id="rps2_label">Submenu</h3> | |
<td> | ||
<code>a</code> | ||
</td> | ||
<td>Indicates the submenu is closed.</td> | ||
<td>Indicates the submenu is closed. (<strong>See note below.</strong>)</td> | ||
</tr> | ||
<tr> | ||
<th> | ||
|
@@ -590,6 +590,15 @@ <h3 id="rps2_label">Submenu</h3> | |
</tr> | ||
</tbody> | ||
</table> | ||
<h3>Note</h3> | ||
<p> | ||
Currently, using aria-expanded on elements with role menuitem triggers HTML validation errors because the ARIA specification does not yet support doing so. | ||
The ARIA working group plans to resolve this issue in the next version of the specification. | ||
Until a version of ARIA that resolves | ||
<a href="https://github.com/w3c/aria/issues/454">the issue</a> | ||
becomes a W3C recommendation, it is safe to ignore these validation errors. | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
mcking65
Author
Contributor
|
||
Alternatively, since only a few browser and assistive technology combinations exploit this feature of the pattern, it can be omitted from implementations. | ||
</p> | ||
</section> | ||
|
||
<section> | ||
|
I don’t need a W3C Recommendation to be published in order to change the HTML checker behavior; instead I just need https://w3c.github.io/aria/aria/aria.html (the Editor’s Draft) to change.
I remains unclear to me why, if the ARIA working group plans to resolve this, the group hasn’t just gone ahead and done that and made the appropriate change to the sources so the https://w3c.github.io/aria/aria/aria.html spec could get updated and so that I could go ahead and update the HTML checker to conform to that change.