chromium/third_party/blink/web_tests/tables/mozilla/bugs/bug30332-1.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="GENERATOR" content="Mozilla/4.72 [en] (Win98; I) [Netscape]">
   <title>ROWSPAN = "0" Test Case</title>
</head>

<body>

BAD:<br><br>
  <center>
    <table BORDER = "5" COLS=1 WIDTH="100%" >
      <tr>
        <td ROWSPAN = "0">One</td>
      </tr>

      <tr>
        <td>Two</td>
      </tr>
    </table>
  </center>

<br>
<br>

GOOD:<br><br>
  <center>
    <table BORDER = "5"COLS=1 WIDTH="100%" >
      <tr>
        <td>One</td>
      </tr>

      <tr>
        <td>Two</td>
      </tr>
    </table>
  </center>

</body>
</html>