tidy-html5/test/input/in_1331849.html
Michael[tm] Smith b92d7aab88 new
2011-11-17 11:44:16 +09:00

52 lines
713 B
HTML
Executable file

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>1331849</TITLE>
</HEAD>
<BODY>
Text BEFORE [implied] table
<TR>
<TD>
Implied table cell.
</TD>
<TD>
Implied because there is no opening table tag - just an opening table row tag.
</TD>
</TR>
<TR>
<TD WIDTH="2%" VALIGN="TOP">
2nd Row of implied table
</TD>
<TD>
More text
</TD>
</TR>
</table>
Text AFTER [implied] table but BEFORE the correctly specified table
<TABLE BORDER="1">
<TR>
<TD>
Row 1 - Cell 1
</TD>
<TD>
Row 1 - Cell 2
</TD>
</TR>
<TR>
<TD>
Row 2 - Cell 1
</TD>
<TD>
Row 2 - Cell 2
</TD>
</TR>
</TABLE>
Text that appears AFTER table the end!
</BODY>
</HTML>