Skip to content
This repository was archived by the owner on Apr 14, 2019. It is now read-only.
This repository was archived by the owner on Apr 14, 2019. It is now read-only.

Lint does not detect nested <tr>, <td> and <th> tags #33

@petdance

Description

@petdance
$ 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.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions