Progressive
Enhancement
 with ARIA
   Aaron Gustafson
We are creating
 richer online
 experiences
...and the barriers
which prohibit them.
                       photo by drcorneilus
Accessibility is crucial




       Aaron Gustafson




                           photo by TimothyJ
Google is a voracious consumer
  of the web. And it’s blind.




                             photo by Ed Yourdon
But accessibility
isn’t only about
   supporting
 screen readers.
What if you can’t use a mouse?




                             photo by lastquest
What if you don’t see a change?
                             photo by placenamehere
We can and must build better.




                                photo by Guillermo
Progressive Enhancement with ARIA!                     ThinkVitamin Presents... HTML & CSS — August 2010




Building better
                                      Every great experience on the web
                                      begins with two key things: clear,
                                      well-written prose and the HTTP
                                      protocol.




  Text & HTTP
Progressive Enhancement with ARIA!                     ThinkVitamin Presents... HTML & CSS — August 2010




Building better
                                      Semantics (markup) convey the
                                      underlying meaning of
                                      the content...
                                      but if poorly applied, meaning can
                                      be obscured.



        (x)HTML

  Text & HTTP
Progressive Enhancement with ARIA!                     ThinkVitamin Presents... HTML & CSS — August 2010




Building better
                                      CSS can enhance usability through
                                      visual clues...
                                      but it can also reduce accessibility
                                      if misused.


               CSS

        (x)HTML

  Text & HTTP
Progressive Enhancement with ARIA!                     ThinkVitamin Presents... HTML & CSS — August 2010




Building better
                                      JavaScript can be used to build
                                      more intuitive interfaces...
                                      but it cannot be relied on 100% of
                                      the time.
      JavaScript

               CSS

        (x)HTML

  Text & HTTP
Progressive Enhancement with ARIA!                      ThinkVitamin Presents... HTML & CSS — August 2010




Building better
                                      WAI-ARIA extends the semantics
                                      of the document to provide
             ARIA                     additional insight into the state of
                                      the interface and how to interact
      JavaScript                      with it.

               CSS

        (x)HTML

  Text & HTTP
Progressive Enhancement with ARIA!                                ThinkVitamin Presents... HTML & CSS — August 2010




Progressive Enhancement

             ARIA



                                      User Experience
      JavaScript

               CSS
                                                  BASIC                                          ADVANCED

                                                          Browser Capabilities
        (x)HTML

  Text & HTTP
WAI-ARIA is a new(ish) tool




                              photo by Saffanna
Semantics+
Map OS concepts to the web

                             photo by steve-uk
Progressive Enhancement with ARIA!          ThinkVitamin Presents... HTML & CSS — August 2010




                                     HTML
Progressive Enhancement with ARIA!          ThinkVitamin Presents... HTML & CSS — August 2010




                                     HTML
Progressive Enhancement with ARIA!    ThinkVitamin Presents... HTML & CSS — August 2010




                http://tinyurl.com/cwyvny
              http://habilis.net/validator-sac/
Call attention to important pieces
                               photo by Verity Cridland
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles
Progressive Enhancement with ARIA!        ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles
                                      role="banner"
Progressive Enhancement with ARIA!        ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles




                                      role="main"
Progressive Enhancement with ARIA!        ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles
                                      role="navigation"
Progressive Enhancement with ARIA!        ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles




                                      role="article"
Progressive Enhancement with ARIA!        ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles




                                      role="complementary"
Progressive Enhancement with ARIA!        ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles




                                      role="list"
Progressive Enhancement with ARIA!        ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles




                                      role="listitem"
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles
Progressive Enhancement with ARIA!        ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles




                                      role="form"
Progressive Enhancement with ARIA!        ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles




                                      role="contentinfo"
Progressive Enhancement with ARIA!                 ThinkVitamin Presents... HTML & CSS — August 2010




Structural Roles
Document Structure
article                                heading         presentation
columnheader                           img             region
definition                             list            row
directory                              listitem        rowheader
document                               math            separator
group                                  note

Landmarks
application                            contentinfo     navigation
banner                                 form            search
complementary                          main
Explain what something is
     & how it works




                            photo by DavePress
Progressive Enhancement with ARIA!              ThinkVitamin Presents... HTML & CSS — August 2010




Widget Roles
<span role="button">OK</span>
(of course <button>OK</button> would be better)

<div role="alert">
  <p>Something went wrong.</p>
</div>

<div role="alertdialog">
  <p>Something went wrong.</p>
  <img src="x.png" alt="dismiss"
       role="button" />
</div>
Progressive Enhancement with ARIA!                      ThinkVitamin Presents... HTML & CSS — August 2010




Widget Roles
alert                                  marquee              slider
alertdialog                            menuitem             spinbutton
button                                 menuitemcheckbox     status
checkbox                               menuitemradio        tab
combobox                               option               tabpanel
dialog                                 progressbar          textbox
gridcell                               radio                timer
link                                   radiogroup           tooltip
log                                    scrollbar            treeitem

Widget Container Roles
grid                                   menubar              tree
listbox                                tablist              treegrid
menu                                   toolbar
Progressive Enhancement with ARIA!            ThinkVitamin Presents... HTML & CSS — August 2010




Widget Properties
aria-activedescendant                  aria-multiline
aria-atomic                            aria-multiselectable
aria-autocomplete                      aria-orientation
aria-controls                          aria-owns
aria-describedby                       aria-posinset
aria-dropeffect                        aria-readonly
aria-flowto                            aria-relevant
aria-haspopup                          aria-required
aria-label                             aria-setsize
aria-labelledby                        aria-sort
aria-level                             aria-valuemax
aria-live                              aria-valuemin
Indicate what’s going on




                           photo by exfordy
Progressive Enhancement with ARIA!                  ThinkVitamin Presents... HTML & CSS — August 2010




Widget States

                                      B       B
                                      (off)   (on)



<button>
  <img src="bold-off.png" alt="bold" />
</button>


<button>
  <img src="bold-on.png" alt="bold" />
</button>
Progressive Enhancement with ARIA!                  ThinkVitamin Presents... HTML & CSS — August 2010




Widget States

                                      B       B
                                      (off)   (on)



<button>
  <img src="bold-off.png" alt="not bold" />
</button>


<button>
  <img src="bold-on.png" alt="bold" />
</button>
Progressive Enhancement with ARIA!                  ThinkVitamin Presents... HTML & CSS — August 2010




Widget States

                                      B       B
                                      (off)   (on)



<button role="button" aria-pressed="false">
  <img src="bold-off.png" alt="not bold" />
</button>


<button role="button" aria-pressed="true">
  <img src="bold-on.png" alt="bold" />
</button>
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Complex Widgets
Progressive Enhancement with ARIA!                        ThinkVitamin Presents... HTML & CSS — August 2010




Complex Widgets

                                      role="application"
Progressive Enhancement with ARIA!                         ThinkVitamin Presents... HTML & CSS — August 2010




Complex Widgets




                                      role="slider"
                                      aria-labelledby="label_handle_valueA"
                                      aria-valuemin="0"
                                      aria-valuemax="71"
                                      aria-valuenow="22"
                                      aria-valuetext="Apr 04"
Progressive Enhancement with ARIA!                         ThinkVitamin Presents... HTML & CSS — August 2010




Complex Widgets




                                      role="presentation"
Progressive Enhancement with ARIA!                 ThinkVitamin Presents... HTML & CSS — August 2010




Widget States
aria-busy
aria-checked
aria-disabled
aria-expanded
aria-grabbed
aria-hidden
aria-invalid
aria-pressed
aria-selected
aria-valuenow (the W3C defines this as a “property”)
aria-valuetext (ditto)
Highlight “living” content
                             photo by kevin1024
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Live Regions
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Live Regions
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Live Regions



<span id="chars_left_notice" class="numeric">
  <strong id="status-field-char-counter"
          class="char-counter">140</strong>
</span>
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Live Regions



<span id="chars_left_notice" class="numeric"
      aria-live="polite">
  <strong id="status-field-char-counter"
          class="char-counter">140</strong>
</span>
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Live Regions



<span id="chars_left_notice" class="numeric"
      aria-live="polite">
  <strong id="status-field-char-counter"
          class="char-counter">140</strong>
  characters left
</span>
Progressive Enhancement with ARIA!            ThinkVitamin Presents... HTML & CSS — August 2010




Notification Options
off
change not announced

polite
change announced after user completes her current activity

assertive
user agent should interrupt the user’s activity, but not immediately

rude
user agent should interrupt the user’s activity immediately
Manage focus with slight-of-hand




                              photo by cfpg
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




tabindex helps manage focus
<div tabindex="0">
  <p>This <code>div</code> can now receive focus
using a keyboard’s <kbd>tab</kbd> key. How cool
is that?</p>
</div>
<div tabindex="-1">
  <p>This <code>div</code> won’t be focused by a
user via the <kbd>tab</kbd> key, but JavaScript
can <code>focus()</code> it. Nifty, huh?</p>
</div>
Piecing it all together
                          photo by Richard Jones
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Let’s Build a Tabbed Interface
Progressive Enhancement with ARIA!      ThinkVitamin Presents... HTML & CSS — August 2010




Traditional approach
<h1>Pumpkin Pie</h1>
<div class="container">
  <div class="section">
    <h2>Overview</h2>
    <img src="pie.jpg" alt="">
    <p>Whether you're hosting a festive party or a casual
    get-together with friends, our Pumpkin Pie will make
    entertaining easy!</p>
    ...
  </div>
  ...
  <ul class="tabs">
    <li><a href="#">Overview</a></li>
    <li><a href="#">Ingredients</a></li>
    <li><a href="#">Directions</a></li>
    <li><a href="#">Nutrition</a></li>
  </ul>
</div>
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Static HTML with no style
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




A little typography
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Typography and color
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Taking another look
Progressive Enhancement with ARIA!             ThinkVitamin Presents... HTML & CSS — August 2010




Taking another look




                                      .tabbed
Progressive Enhancement with ARIA!      ThinkVitamin Presents... HTML & CSS — August 2010




Required source
<h1>Pumpkin Pie</h1>
<div class="tabbed">
  <h2>Overview</h2>
  <img src="pie.jpg" alt="" />
  <p>Whether you're hosting a festive party or a casual
  get-together with friends, our Pumpkin Pie will make
  entertaining easy!</p>
  ...
  <h2>Ingredients</h2>
  <ul>
    <li>1 (9<abbr title="inch">in</abbr>) unbaked deep
        dish pie crust</li>
    <li>½ cup white sugar</li>
    ...
  </ul>
  <h2>Directions</h2>
  ...
</div>
Progressive Enhancement with ARIA!                     ThinkVitamin Presents... HTML & CSS — August 2010




Understanding the flow



                  Split the
               content & make               Page
                 some tabs




                                            JS?
                                      Yes          No
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Mouse-based interaction
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Assigning ARIA Roles
Progressive Enhancement with ARIA!                       ThinkVitamin Presents... HTML & CSS — August 2010




Assigning ARIA Roles




                               role="application"
                               aria-activedescendant="folder-1"
Progressive Enhancement with ARIA!                        ThinkVitamin Presents... HTML & CSS — August 2010




Assigning ARIA Roles




                                 role="tabpanel"
                                 aria-hidden="false"
                                 aria-labelledby="folder-1-tab"
Progressive Enhancement with ARIA!                    ThinkVitamin Presents... HTML & CSS — August 2010




Assigning ARIA Roles
                                      role="tablist"
Progressive Enhancement with ARIA!                     ThinkVitamin Presents... HTML & CSS — August 2010




Assigning ARIA Roles
                                      role="tab"
                                      aria-selected="false"
                                      aria-describedby="folder-4"
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Assigning ARIA Roles
      role="tab"
      aria-selected="true"
      aria-describedby="folder-1"
Progressive Enhancement with ARIA!      ThinkVitamin Presents... HTML & CSS — August 2010




Updating states and properties
tab.onclick                  = swap;

// ...

function swap( e ){
  // ...
  old_tab.setAttribute( 'aria-selected', 'false' );
  // ...
  tab.setAttribute( 'aria-selected', 'true' );
  // ...
  old_folder.setAttribute( 'aria-hidden', 'true' );
  // ...
  new_folder.setAttribute( 'aria-hidden', 'false' );
  // ...
  _cabinet.setAttribute( 'aria-activedescendant', _active );
}
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Enabling the keyboard
tab.onclick   = swap;
tab.onkeydown = moveFocus;
tab.onfocus   = swap;
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Enabling the keyboard
Progressive Enhancement with ARIA!               ThinkVitamin Presents... HTML & CSS — August 2010




Enabling the keyboard
                                      tabindex="-1"
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Enabling the keyboard
                   tabindex="0"
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Enabling the keyboard
function moveFocus( e ) {
  e = ( e ) ? e : event;
  var tab = e.target || e.srcElement,
      key = e.keyCode || e.charCode,
      pass = true;
      tab = getTab( tab );

    // keyboard handling goes here

    if ( ! pass )
    {
      return cancel( e );
    }
}
Progressive Enhancement with ARIA!      ThinkVitamin Presents... HTML & CSS — August 2010




Enabling the keyboard
function getTab( tab )
{
  while ( tab.nodeName.toLowerCase() != 'li' )
  {
    tab = tab.parentNode;
  }
  return tab;
}
Progressive Enhancement with ARIA!      ThinkVitamin Presents... HTML & CSS — August 2010




Enabling the keyboard
function moveFocus( e ) {
  // ...
  switch ( key ) {
    case 37: // left arrow
    case 38: // up arrow
      move( tab, 'previous', false );
      pass = false;
      break;
    // down (39), right (40), home (36), end (35)
    // should be added here
    case 27: // escape
      tab.blur();
      pass = false;
      break;
  }
  // ...
}
Progressive Enhancement with ARIA!      ThinkVitamin Presents... HTML & CSS — August 2010




Enabling the keyboard
function move( tab, direction, complete ) {
  if ( complete ) {
    if ( direction == 'previous' ) {
      tab.parentNode.childNodes[0].focus();
    } else {
      tab.parentNode
         .childNodes[tab.parentNode
                        .childNodes.length-1].focus();
    }
  } else {
    var target = direction == 'previous' ? tab.previousSibling
                                         : tab.nextSibling;
    if ( target ) {
      target.focus();
    }
  }
}
Progressive Enhancement with ARIA!      ThinkVitamin Presents... HTML & CSS — August 2010




Enabling the keyboard
function swap( e ){
  // ...
  old_tab.setAttribute( 'aria-selected', 'false' );
  old_tab.setAttribute( 'tabindex', '-1' );
  // ...
  tab.setAttribute( 'aria-selected', 'true' );
  tab.setAttribute( 'tabindex', '0' );
  // ...
  old_folder.setAttribute( 'aria-hidden', 'true' );
  old_folder.setAttribute( 'tabindex', '-1' );
  // ...
  new_folder.setAttribute( 'aria-hidden', 'false' );
  new_folder.setAttribute( 'tabindex', '0' );
  // ...
}
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




The Fruit (Pie) of Our Labor
Progressive Enhancement with ARIA!   ThinkVitamin Presents... HTML & CSS — August 2010




Who is Supporting WAI-ARIA?
Progressive Enhancement with ARIA!                  ThinkVitamin Presents... HTML & CSS — August 2010




For More
WAI-ARIA Spec
w3.org/TR/wai-aria/


WAI-ARIA Support in Browsers
paciellogroup.com/blog/aria-tests/ARIA-SafariaOperaIEFF.html


TabInterface
easy-designs.github.com/tabinterface.js/
Progressive
Enhancement
 with ARIA
   Aaron Gustafson
Progressive Enhancement with ARIA!                                              ThinkVitamin Presents... HTML & CSS — August 2010




                                       Slides available at
                            http://slideshare.net/AaronGustafson

                           This presentation is licensed under
                                   Creative Commons
                      Attribution-Noncommercial-Share Alike 3.0

                                           flickr Photo Credits
                                            “ferris wheel? not yet...” by drcorneilus
                                                “Hunter Museum” by TimothyJ
                                      “No, I don't need any help - I'm…” by Ed Yourdon
                                              “The almighty mouse” by lastquest
                                        “wii browser - zoomed in” by placenamehere
                                                  “Legospective” by Guillermо
                                  “I love my toolbox 15 July Scavenger Hunt” by Saffanna
                                            “Dual Samsung Monitors” by steve-uk
                                 “Keystone of the Monumental Arch,…” by Verity Cridland
                                                      “Lego” by DavePress
                                               “iFlickr touch screen” by exfordy
                                                  “Green Plant” by kevin1024
                                                         “Cartas” by cfpg
                                          “Lego Millenium Falcon” by Richard Jones

Progressive Enhancement with ARIA [Carsonified HTML & CSS Online Conference]

  • 1.
  • 2.
    We are creating richer online experiences
  • 4.
    ...and the barriers whichprohibit them. photo by drcorneilus
  • 5.
    Accessibility is crucial Aaron Gustafson photo by TimothyJ
  • 6.
    Google is avoracious consumer of the web. And it’s blind. photo by Ed Yourdon
  • 7.
    But accessibility isn’t onlyabout supporting screen readers.
  • 8.
    What if youcan’t use a mouse? photo by lastquest
  • 9.
    What if youdon’t see a change? photo by placenamehere
  • 10.
    We can andmust build better. photo by Guillermo
  • 11.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Building better Every great experience on the web begins with two key things: clear, well-written prose and the HTTP protocol. Text & HTTP
  • 12.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Building better Semantics (markup) convey the underlying meaning of the content... but if poorly applied, meaning can be obscured. (x)HTML Text & HTTP
  • 13.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Building better CSS can enhance usability through visual clues... but it can also reduce accessibility if misused. CSS (x)HTML Text & HTTP
  • 14.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Building better JavaScript can be used to build more intuitive interfaces... but it cannot be relied on 100% of the time. JavaScript CSS (x)HTML Text & HTTP
  • 15.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Building better WAI-ARIA extends the semantics of the document to provide ARIA additional insight into the state of the interface and how to interact JavaScript with it. CSS (x)HTML Text & HTTP
  • 16.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Progressive Enhancement ARIA User Experience JavaScript CSS BASIC ADVANCED Browser Capabilities (x)HTML Text & HTTP
  • 17.
    WAI-ARIA is anew(ish) tool photo by Saffanna
  • 18.
  • 19.
    Map OS conceptsto the web photo by steve-uk
  • 20.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 HTML
  • 21.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 HTML
  • 22.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 http://tinyurl.com/cwyvny http://habilis.net/validator-sac/
  • 23.
    Call attention toimportant pieces photo by Verity Cridland
  • 24.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles
  • 25.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles role="banner"
  • 26.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles role="main"
  • 27.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles role="navigation"
  • 28.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles role="article"
  • 29.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles role="complementary"
  • 30.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles role="list"
  • 31.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles role="listitem"
  • 32.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles
  • 33.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles role="form"
  • 34.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles role="contentinfo"
  • 35.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Structural Roles Document Structure article heading presentation columnheader img region definition list row directory listitem rowheader document math separator group note Landmarks application contentinfo navigation banner form search complementary main
  • 36.
    Explain what somethingis & how it works photo by DavePress
  • 37.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Widget Roles <span role="button">OK</span> (of course <button>OK</button> would be better) <div role="alert"> <p>Something went wrong.</p> </div> <div role="alertdialog"> <p>Something went wrong.</p> <img src="x.png" alt="dismiss" role="button" /> </div>
  • 38.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Widget Roles alert marquee slider alertdialog menuitem spinbutton button menuitemcheckbox status checkbox menuitemradio tab combobox option tabpanel dialog progressbar textbox gridcell radio timer link radiogroup tooltip log scrollbar treeitem Widget Container Roles grid menubar tree listbox tablist treegrid menu toolbar
  • 39.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Widget Properties aria-activedescendant aria-multiline aria-atomic aria-multiselectable aria-autocomplete aria-orientation aria-controls aria-owns aria-describedby aria-posinset aria-dropeffect aria-readonly aria-flowto aria-relevant aria-haspopup aria-required aria-label aria-setsize aria-labelledby aria-sort aria-level aria-valuemax aria-live aria-valuemin
  • 40.
    Indicate what’s goingon photo by exfordy
  • 41.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Widget States B B (off) (on) <button> <img src="bold-off.png" alt="bold" /> </button> <button> <img src="bold-on.png" alt="bold" /> </button>
  • 42.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Widget States B B (off) (on) <button> <img src="bold-off.png" alt="not bold" /> </button> <button> <img src="bold-on.png" alt="bold" /> </button>
  • 43.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Widget States B B (off) (on) <button role="button" aria-pressed="false"> <img src="bold-off.png" alt="not bold" /> </button> <button role="button" aria-pressed="true"> <img src="bold-on.png" alt="bold" /> </button>
  • 44.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Complex Widgets
  • 45.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Complex Widgets role="application"
  • 46.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Complex Widgets role="slider" aria-labelledby="label_handle_valueA" aria-valuemin="0" aria-valuemax="71" aria-valuenow="22" aria-valuetext="Apr 04"
  • 47.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Complex Widgets role="presentation"
  • 48.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Widget States aria-busy aria-checked aria-disabled aria-expanded aria-grabbed aria-hidden aria-invalid aria-pressed aria-selected aria-valuenow (the W3C defines this as a “property”) aria-valuetext (ditto)
  • 49.
  • 50.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Live Regions
  • 51.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Live Regions
  • 52.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Live Regions <span id="chars_left_notice" class="numeric"> <strong id="status-field-char-counter" class="char-counter">140</strong> </span>
  • 53.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Live Regions <span id="chars_left_notice" class="numeric" aria-live="polite"> <strong id="status-field-char-counter" class="char-counter">140</strong> </span>
  • 54.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Live Regions <span id="chars_left_notice" class="numeric" aria-live="polite"> <strong id="status-field-char-counter" class="char-counter">140</strong> characters left </span>
  • 55.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Notification Options off change not announced polite change announced after user completes her current activity assertive user agent should interrupt the user’s activity, but not immediately rude user agent should interrupt the user’s activity immediately
  • 56.
    Manage focus withslight-of-hand photo by cfpg
  • 57.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 tabindex helps manage focus <div tabindex="0"> <p>This <code>div</code> can now receive focus using a keyboard’s <kbd>tab</kbd> key. How cool is that?</p> </div> <div tabindex="-1"> <p>This <code>div</code> won’t be focused by a user via the <kbd>tab</kbd> key, but JavaScript can <code>focus()</code> it. Nifty, huh?</p> </div>
  • 58.
    Piecing it alltogether photo by Richard Jones
  • 59.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Let’s Build a Tabbed Interface
  • 60.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Traditional approach <h1>Pumpkin Pie</h1> <div class="container"> <div class="section"> <h2>Overview</h2> <img src="pie.jpg" alt=""> <p>Whether you're hosting a festive party or a casual get-together with friends, our Pumpkin Pie will make entertaining easy!</p> ... </div> ... <ul class="tabs"> <li><a href="#">Overview</a></li> <li><a href="#">Ingredients</a></li> <li><a href="#">Directions</a></li> <li><a href="#">Nutrition</a></li> </ul> </div>
  • 61.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Static HTML with no style
  • 62.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 A little typography
  • 63.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Typography and color
  • 64.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Taking another look
  • 65.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Taking another look .tabbed
  • 66.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Required source <h1>Pumpkin Pie</h1> <div class="tabbed"> <h2>Overview</h2> <img src="pie.jpg" alt="" /> <p>Whether you're hosting a festive party or a casual get-together with friends, our Pumpkin Pie will make entertaining easy!</p> ... <h2>Ingredients</h2> <ul> <li>1 (9<abbr title="inch">in</abbr>) unbaked deep dish pie crust</li> <li>½ cup white sugar</li> ... </ul> <h2>Directions</h2> ... </div>
  • 67.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Understanding the flow Split the content & make Page some tabs JS? Yes No
  • 68.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Mouse-based interaction
  • 69.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Assigning ARIA Roles
  • 70.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Assigning ARIA Roles role="application" aria-activedescendant="folder-1"
  • 71.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Assigning ARIA Roles role="tabpanel" aria-hidden="false" aria-labelledby="folder-1-tab"
  • 72.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Assigning ARIA Roles role="tablist"
  • 73.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Assigning ARIA Roles role="tab" aria-selected="false" aria-describedby="folder-4"
  • 74.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Assigning ARIA Roles role="tab" aria-selected="true" aria-describedby="folder-1"
  • 75.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Updating states and properties tab.onclick = swap; // ... function swap( e ){ // ... old_tab.setAttribute( 'aria-selected', 'false' ); // ... tab.setAttribute( 'aria-selected', 'true' ); // ... old_folder.setAttribute( 'aria-hidden', 'true' ); // ... new_folder.setAttribute( 'aria-hidden', 'false' ); // ... _cabinet.setAttribute( 'aria-activedescendant', _active ); }
  • 76.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Enabling the keyboard tab.onclick = swap; tab.onkeydown = moveFocus; tab.onfocus = swap;
  • 77.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Enabling the keyboard
  • 78.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Enabling the keyboard tabindex="-1"
  • 79.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Enabling the keyboard tabindex="0"
  • 80.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Enabling the keyboard function moveFocus( e ) { e = ( e ) ? e : event; var tab = e.target || e.srcElement, key = e.keyCode || e.charCode, pass = true; tab = getTab( tab ); // keyboard handling goes here if ( ! pass ) { return cancel( e ); } }
  • 81.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Enabling the keyboard function getTab( tab ) { while ( tab.nodeName.toLowerCase() != 'li' ) { tab = tab.parentNode; } return tab; }
  • 82.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Enabling the keyboard function moveFocus( e ) { // ... switch ( key ) { case 37: // left arrow case 38: // up arrow move( tab, 'previous', false ); pass = false; break; // down (39), right (40), home (36), end (35) // should be added here case 27: // escape tab.blur(); pass = false; break; } // ... }
  • 83.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Enabling the keyboard function move( tab, direction, complete ) { if ( complete ) { if ( direction == 'previous' ) { tab.parentNode.childNodes[0].focus(); } else { tab.parentNode .childNodes[tab.parentNode .childNodes.length-1].focus(); } } else { var target = direction == 'previous' ? tab.previousSibling : tab.nextSibling; if ( target ) { target.focus(); } } }
  • 84.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Enabling the keyboard function swap( e ){ // ... old_tab.setAttribute( 'aria-selected', 'false' ); old_tab.setAttribute( 'tabindex', '-1' ); // ... tab.setAttribute( 'aria-selected', 'true' ); tab.setAttribute( 'tabindex', '0' ); // ... old_folder.setAttribute( 'aria-hidden', 'true' ); old_folder.setAttribute( 'tabindex', '-1' ); // ... new_folder.setAttribute( 'aria-hidden', 'false' ); new_folder.setAttribute( 'tabindex', '0' ); // ... }
  • 85.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 The Fruit (Pie) of Our Labor
  • 86.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Who is Supporting WAI-ARIA?
  • 87.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 For More WAI-ARIA Spec w3.org/TR/wai-aria/ WAI-ARIA Support in Browsers paciellogroup.com/blog/aria-tests/ARIA-SafariaOperaIEFF.html TabInterface easy-designs.github.com/tabinterface.js/
  • 88.
  • 89.
    Progressive Enhancement withARIA! ThinkVitamin Presents... HTML & CSS — August 2010 Slides available at http://slideshare.net/AaronGustafson This presentation is licensed under Creative Commons Attribution-Noncommercial-Share Alike 3.0 flickr Photo Credits “ferris wheel? not yet...” by drcorneilus “Hunter Museum” by TimothyJ “No, I don't need any help - I'm…” by Ed Yourdon “The almighty mouse” by lastquest “wii browser - zoomed in” by placenamehere “Legospective” by Guillermо “I love my toolbox 15 July Scavenger Hunt” by Saffanna “Dual Samsung Monitors” by steve-uk “Keystone of the Monumental Arch,…” by Verity Cridland “Lego” by DavePress “iFlickr touch screen” by exfordy “Green Plant” by kevin1024 “Cartas” by cfpg “Lego Millenium Falcon” by Richard Jones