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
   27

content / test / data / accessibility / html / table-column-remove.html [blame]

<!--
@BLINK-ALLOW:*ColumnCount*
@BLINK-ALLOW:*ColumnIndex*
@WAIT-FOR:done
-->
<style>
  .hide-first-column td:first-child { display: none; }
</style>
<table border="1">  <!-- Border forces data table -->
  <tbody>
    <tr>
      <td>AB</td>
      <td>B</td>
    </tr>
    <tr>
      <td>CD</td>
      <td>D</td>
    </tr>
  </tbody>
</table>

<script>
  setTimeout(() => {
    document.body.className = "hide-first-column";
    document.title="done";
  }, 50);
</script>