Accessibility WG Teleconference Minutes 06-27-2014
- Former user (Deleted)
Owned by Former user (Deleted)
Jun 27, 2014
1 min read
Loading data...
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
- http://www.deque.com (did Bb)
- https://www.ssbbartgroup.com - doing Stanford's audit
Not contacted
Voluntary Product Accessibility Template - VPATÂ - not given a lot of weight and many times inaccurate.Â
JIRAs (following-up from last call)
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
<!--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>
 Â