1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23

content / test / data / accessibility / aria / aria-rowtext.html [blame]

<!--
@WIN-ALLOW:rowindex*
@WIN-ALLOW:rowtext*
@WIN-ALLOW:colindex*
@WIN-ALLOW:coltext*
@AURALINUX-ALLOW:rowindex*
@AURALINUX-ALLOW:rowtext*
@AURALINUX-ALLOW:colindex*
@AURALINUX-ALLOW:coltext*
-->
<!-- Legacy aria-rowtext and aria-coltext as well as legacy object attributes
     rowtext and coltext must be supported in addition to the new names
     aria-rowindextext/rowindextext and aria-colindextext/colindexdext -->
<div role="grid">
  <div role="row">
    <span role="gridcell" aria-rowindex="3" aria-rowtext="-Three-" aria-coltext="A">cell A3</span>
    <span role="gridcell" aria-rowindex="3" aria-rowtext="-Three-" aria-coltext="B">cell B3</span>
  </div>
  <div role="row">
    <span role="gridcell" aria-rowindex="4" aria-rowindextext="-Four-" aria-colindextext="A">cell A4</span>
    <span role="gridcell" aria-rowindex="4" aria-rowindextext="-Four" aria-colindextext="B">cell B4</span>
  </div>
</div>