IE definindo a altura da linha não funciona ao usar o tablespan

Basta saber por que o seguinte HTML não funciona. Basicamente, sempre que eu defino o rowpan em uma linha da tabela, o IE parece ignorar as alturas que defini:

<table border="1" cellpadding="0" cellspacing="0" width="100%">
  <tr>
    <td height="20">A</td>
    <td align="center" rowspan="3">
      Test
      <br />Test
      <br />Test
      <br />Test
      <br />Test
      <br />Test
      <br />Test
    </td>
  </tr>
  <tr>
    <td height="20">B</td>
  </tr>
  <tr>
    <td>C</td>
  </tr>
</table>

Alguém sabe por que está se comportando assim?

questionAnswers(1)

yourAnswerToTheQuestion