diagnostic.css icon indicating copy to clipboard operation
diagnostic.css copied to clipboard

Check for ARIA Landmarks

Open Heydon opened this issue 12 years ago • 0 comments

Some examples:

Checking for role="main" /

on #main...

#main:not([role="main"]):not(main):after {
   content: 'error message';
}

Checking for role="banner" on page-level header:

body > header:not([role="banner"]), 
#header:not([role="banner"]), 
#page-header:not([role="banner"]) {
   content: 'error message';
}

You could do the same for contentinfo on the page footer, maybe?

Heydon avatar Aug 24 '13 09:08 Heydon