-
Bug
-
Resolution: Fixed
-
Minor
-
None
-
Incorrect code.
The following code is incorrect. <tfoot> should not be inside <tbody>, optional <thead> is missing.
http://www.w3schools.com/tags/tag_thead.asp
http://www.w3schools.com/tags/tag_tbody.asp
http://www.w3schools.com/tags/tag_tfoot.asp
<table class="pane sortable" id="files"> <tr> <td class="pane-header">${%File}</td> <td class="pane-header" style="width:2em">${%Language}</td> <td class="pane-header" style="width:2em">${%Lines}</td> <td class="pane-header" style="width:60%">${%Distribution}</td> </tr> <tbody> ... <tfoot> ... </tfoot> </tbody> </table>