RetroZilla/parser/htmlparser/tests/html/Table_illegal_1.html

63 lines
778 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<html>
<head>
<title> Bad Content </title>
</head>
<style>
table {
border: solid red;
background-color:yellow;
}
P { background-color: pink; }
</style>
<body>
<table >
<tr>
<td>
<P> some text
two</td>
</tr>
</table>
<table>
<tr>
<P>ss
<td>three</td>
</tr>
</table>
<table>
<tr>
<P>one
<td>
<table>
<P>last
<tr>
<P>two
<td>
<table>
<tr>
<P>three
<td>
<table>
<tr>
<td>
4TD
</td>
</tr>
</table>
</td>
<P>three last
</tr>
</table>
</td>
<P>two last
</tr>
</table>
</td>
<P>one last
</tr>
</table>
</body>
</html>