1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 10:35:07 +00:00
serenity/Userland/Libraries/LibWeb/Tests/Pages/Table.html
Adam Hodgen dc9995a5ba LibWeb: Add tests for HTMLTableElement attributes
These tests aim to exercise all attributes on <html> elements, including
all edge cases.
2021-05-09 18:38:34 +02:00

28 lines
385 B
HTML

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table id="empty-table"></table>
<table id="full-table">
<caption>A Caption</caption>
<thead>
<th>Head Cell</th>
</thead>
<tbody>
<tr>
<td>
Body Cell
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>
Footer Cell
</td>
</tr>
</tfoot>
</table>
</body>
</html>