HTML Tidy doesn't seem to like table tags inside button tags
Joshua Hudson <[email protected]>
| Newsgroups | gmane.comp.web.html-tidy.user |
|---|---|
| Message-ID | <[email protected]> |
HTML Tidy doesn't seem to like table tags inside button tags. The SGML parser for HTML 4.01 Transitional seems to like it just fine. Small sample attached.
tableinbutton.html
(text/html, 294 B)
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>
<HTML>
<HEAD><TITLE>Table tag in button tag</TITLE></HEAD>
<BODY>
<BUTTON>
<TABLE BORDER=1>
<TR>
<TD>
C1
</TD>
<TD>
C2
</TD>
</TR>
</TABLE>
</BUTTON>
</BODY></HTML>