Accessibility WG Teleconference Minutes 06-27-2014

Accessibility WG Teleconference Minutes 06-27-2014

Attending:

    Neal Caidin

    Matt J

  • Matt Clare

  • Joe Humbert

Regrets:

  • Gonzalo Silverio

  • Jim Mezzanotte

Agenda:

Is there a better time to conduct our call?

  • Some time earilier?  12:00 EDT/16:00 UTC has been suggested

Options for Sakai audit - is this for $$ estimate?

  • Sit-rep

  • VPAT from Sakai 2.7 to Sakai 10 thought experiment 

Contacted

WebAIM

Not contacted

Voluntary Product Accessibility Template - VPAT  - not given a lot of weight and many times inaccurate. 

JIRAs (following-up from last call)

https://jira.sakaiproject.org/browse/SAK-22723 - Gonzalo currently working on

https://jira.sakaiproject.org/browse/SAM-2342 - 

Trunk still uses letters to designate the matching choices instead of the actual answer. This should probably be changed so uses with visual impairments don't need to remember all the choices. -- Matt add summary and screecast as comment

https://jira.sakaiproject.org/browse/PRFL-769 - Still an issue in 2.9.... will check 10 

<!--Add tablist as a role to the ul of tabs-->

  <ul role="tablist">

    <!--Each tab needs the role tab, it's default selection state defined and it's associated tab content-->

    <li><a href="#tab1" role="tab" aria-selected="true " aria-controls="tabs-1">Nunc tincidunt</a></li>

    <li><a href="#tab2" role="tab" aria-selected="false" aria-controls="tabs-2">Proin dolor</a></li>

  </ul>

  

  <!--Each tab content item needs it's role defined as tabpanel and it's associated aria label-->

  <div id="tab1" role="tabpanel" aria-labelledby="tab 1">

    <p>Some Text 1</p>

  </div>

  <div id="tab2" role="tabpanel" aria-labelledby="tab 2">

    <p>Some Text 2</p>

  </div>

  

  http://www.oaa-accessibility.org/examplep/tabpanel1/