- From: <bugzilla@jessica.w3.org>
- Date: Mon, 29 Sep 2014 18:50:17 +0000
- To: public-html-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=26931
Bug ID: 26931
Summary: Adding role="region" to list of allowable roles on an
"article", "aside" and "address" elements
Product: HTML WG
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: major
Priority: P3
Component: Using ARIA in HTML
Assignee: faulkner.steve@gmail.com
Reporter: jongund@illinois.edu
QA Contact: dave.null@w3.org
CC: mike@w3.org, public-html-bugzilla@w3.org
Article, aside and address elements can be used in many different ways on web
pages. By allowing these elements to have a role="region" they can be used to
identify sub-sections within top level landmarks like role=main.
For example:
<section role="main">
<h1>My New Paper</h1>
<article role="region" aria-labelledby="art1">
<h2 id="art1">My First Article</h2>
<p>para 1...</p>
<p>para 2...</p>
</article>
<article role="region" aria-labelledby="art2">
<h2 id="art2">My Second Article</h2>
<p>para 3...</p>
<p>para 4...</p>
</article>
<article role="region" aria-labelledby="art3">
<h2 id="art3">My Third Article</h2>
<p>para 5...</p>
<p>para 6...</p>
</article>
<aside role="region" aria-label="Today's weather">
<div> ... weather information ...</div>
<aside>
</section>
<footer role="complementary">
<address role="region" aria-label="My News Paper Contact information">
</address>
</footer>
--
You are receiving this mail because:
You are on the CC list for the bug.
Received on Monday, 29 September 2014 18:50:19 UTC