RetroZilla/layout/html/tests/block/bugs/13553.html

53 lines
1.0 KiB
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<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>