RetroZilla/layout/html/tests/block/bugs/13553.html
2015-10-20 23:03:22 -04:00

53 lines
1.0 KiB
HTML

<html><head><title>Testcase for bug 13553</title></head>
<body bgcolor="#FFFFFF">
The following tables are identically coded except for the P end-tag.<BR>
<table border="1">
<tr>
<td width="138">
<P><!-- NOTE THE P HERE (no end-tag) -->
<table width="160" align="right"><tr>
<td>ABCDE</td>
</tr></table>
</td>
</tr>
</table>
<table border="1">
<tr>
<td width="138">
<P><!-- NOTE THE P HERE -->
</P><!-- NOTE THE /P HERE --><table width="160" align="right"><tr>
<td>ABCDE</td>
</tr></table>
</td>
</tr>
</table>
<table border="1">
<tr>
<td width="138">
<P><!-- NOTE THE P HERE -->
<table width="160" align="right"><tr>
<td>ABCDE</td>
</tr></table></P><!-- NOTE THE /P HERE -->
</td>
</tr>
</table>
<table border="1">
<tr>
<td width="138">
<P><!-- NOTE THE P HERE -->
<table width="160" align="right"><tr>
<td>ABCDE</td>
</tr></table>
</td>
</tr>
</table>
</P><!-- NOTE THE /P HERE -->
</body>
</html>