[Bug 26933] New: Adding role="region" to list of allowable roles on an "article", "aside" and "address" elements

https://www.w3.org/Bugs/Public/show_bug.cgi?id=26933

            Bug ID: 26933
           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: HTML5 spec
          Assignee: dave.null@w3.org
          Reporter: faulkner.steve@gmail.com
        QA Contact: public-html-bugzilla@w3.org
                CC: jongund@illinois.edu, mike@w3.org,
                    public-html-admin@w3.org, public-html-bugzilla@w3.org,
                    public-html-wg-issue-tracking@w3.org
        Depends on: 26931

+++ This bug was initially created as a clone of Bug #26931 +++

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 21:33:05 UTC