7-Jul-99 bug: <tr> without <td> is deleted

I hope I'm not misinterpreting something here.  The HTML document below
contains a paragraph element in a table row without an enclosing table cell.
7-Jul-99 Tidy deletes the unexpected paragraph element.  The release notes
indicate that as of 2-Jul-99, the paragraph element should be moved to just
before the table to mimic Netscape's and IE's behavior.  This seems to
happen with any content, not just paragraph elements.

-------- Example HTML document --------
<html>
  <head>
    <title>t</title>
  </head>
  <body>
    <table border="1" summary="s">
	  <tr><td><p>Has cell</p></td></tr>
      <tr><p>No cell</p></tr>
    </table>
  </body>
</html>
---------------------------------------

Thanks,
Randy

Received on Monday, 26 July 1999 13:33:20 UTC