You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 14, 2019. It is now read-only.
$ cat foo.html
<html>
<head><title>foo</title></head>
<body>
<table>
<tr>
<tr> <!-- This should be an error -->
<td>
<td></td> <!-- This should be an error -->
</td>
<th>
<th></th> <!-- This should be an error -->
</th>
</tr>
</tr>
</table>
</body>
</html>
$ weblint foo.html
$
The <td>, <tr> and <th> should not be able to nest like that.
The text was updated successfully, but these errors were encountered:
petdance
changed the title
Lint does not detect incorrectly nested <tr>, <td> and <th> tags
Lint does not detect nested <tr>, <td> and <th> tags
Apr 8, 2014
The
<td>
,<tr>
and<th>
should not be able to nest like that.The text was updated successfully, but these errors were encountered: