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

content / test / data / accessibility / css / table-data-display-other.html [blame]

<!--
@BLINK-ALLOW:tableColumnCount*
@BLINK-ALLOW:tableRowCount*
@BLINK-ALLOW:table*Index*
-->
<!-- Ensure that a table with display styles and other semantic table markup
  is still exposed as a data table.. -->
<style>
table, thead, tbody, tr, td { display: flex; }
</style>
<table>
  <thead>
    <tr>
      <th>1</th>
      <th>2</th>
      <th>3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>a</td>
      <td>b</td>
      <td>c</td>
    </tr>
  </tbody>
</table>