Accessibility/ARIA1.0TestSuiteFailures: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
(Created page with "<table border="1" width="100%"> <tr> <th>Test No</th> <th>Code snippet</th> <th>Description</th> <th>Comment</th> </tr> <tr> <td>[https://dvcs.w3.org/hg/pfwg/file/c9aa483b06ca/AR...")
 
No edit summary
Line 19: Line 19:
<td>aria-hidden is a global attribute and should nullify the presentational role on the &lt;td&gt; </td>
<td>aria-hidden is a global attribute and should nullify the presentational role on the &lt;td&gt; </td>
<td>Target: Firefox 19</td>
<td>Target: Firefox 19</td>
</tr>
<tr>
<td>[https://dvcs.w3.org/hg/pfwg/raw-file/tip/ARIA/1.0/tests/test-files/name-computation-input/550.html 550]</td>
<td>
<pre>
<label for="ID0">
  crazy
  <div role="spinbutton" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
  </div>
</label>
<input type="text" id="ID0" value="baz"/>
</pre>
</td>
<td>Accessible name is a concatenation of the embedded label text followed by a space and followed by the aria-valuenow of the spinbutton embedded in the label. In this case text field has "crazy 4" name</td>
<td>Firefox has different name computation algorithm. Needs investigations.</td>
</tr>
</tr>
</table>
</table>

Revision as of 08:10, 7 November 2012

Test No Code snippet Description Comment
521
<table role="presentation">
<tr>
<td aria-hidden="true">Test me</td>
</tr>
</table>
aria-hidden is a global attribute and should nullify the presentational role on the <td> Target: Firefox 19
550
<label for="ID0">
  crazy
  <div role="spinbutton" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
  </div>
</label>
<input type="text" id="ID0" value="baz"/>
Accessible name is a concatenation of the embedded label text followed by a space and followed by the aria-valuenow of the spinbutton embedded in the label. In this case text field has "crazy 4" name Firefox has different name computation algorithm. Needs investigations.