[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

extra spaces within tables



Gentlemen, I have made the following HTML file that you will please
run to investigate extra spaces within tables. Thank you.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd";>

<html>
<head>
 <meta http-equiv="Content-Type" content=
 "text/html; charset=utf-8">

 <title>w3m table tests</title>
</head>

<body>
 <p>Gentlemen, consider the following tables:</p>

 <ol>
  <li>
   <table summary="debug" border="1">
    <tr>
     <td>u</td>

     <td>422</td>
    </tr>
   </table>
  </li>

  <li>
   <table summary="debug" border="1">
    <tr>
     <td>u</td>

     <td>4</td>
    </tr>
   </table>
  </li>

  <li>
   <table summary="debug" border="1">
    <tr>
     <td>422</td>
    </tr>
   </table>
  </li>
 </ol>

 <p>I find with w3m -dump I get one table with extra space; w3m and
 emacs-w3m give two.</p>
</body>
</html>