swc/crates/swc_html_parser/tests/fixture/element/colgroup/input.html
2022-06-02 04:00:32 +00:00

19 lines
439 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<table>
<caption>Superheros and sidekicks</caption>
<colgroup><col><col span="2" class="batman"><col span="2" class="flash"></colgroup>
<tr>
<td> </td>
<th scope="col">Batman</th>
<th scope="col">Robin</th>
<th scope="col">The Flash</th>
<th scope="col">Kid Flash</th>
</tr>
</table>
</body>
</html>