From 310801cdfc8de727e8b285ec6df9728b9ca75afc Mon Sep 17 00:00:00 2001 From: Matt King Date: Sun, 8 Oct 2017 12:42:38 -0700 Subject: [PATCH] Navigation Menubar Example: Add aria-expanded validation note 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. --- examples/menubar/menubar-1/menubar-1.html | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/examples/menubar/menubar-1/menubar-1.html b/examples/menubar/menubar-1/menubar-1.html index 8c534a144a..fe2aab911c 100644 --- a/examples/menubar/menubar-1/menubar-1.html +++ b/examples/menubar/menubar-1/menubar-1.html @@ -561,7 +561,7 @@

Submenu

a - Indicates the submenu is open. + Indicates the submenu is open. (See note below.) @@ -571,7 +571,7 @@

Submenu

a - Indicates the submenu is closed. + Indicates the submenu is closed. (See note below.) @@ -590,6 +590,15 @@

Submenu

+

Note

+

+ 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. +