1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15

content / test / data / accessibility / html / table-with-pseudo-elements.html [blame]

<!doctype HTML>
<style>
  :before {
    content: "before";
  }
  :after {
    content: "after";
  }
</style>
<table>
  <tr>
    <td><input type="text"></td>
    <td><input type="submit"></td>
  </tr>
</table>