1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-08 14:37:35 +00:00
serenity/Tests/LibWeb/Layout/input/table/rowspan.html
Andi Gallo e6221117a5 LibWeb: Implement table rowspan
Adjust computing the table height and positioning of cells to account
for the rowspan property.

Fixes #18952.
2023-05-21 14:23:41 +02:00

32 lines
No EOL
569 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Table with rowspan</title>
</head>
<body>
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
<tr>
<td rowspan="2">Row 1</td>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
<tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
<tr>
<td>Row 2</td>
<td>Cell 5</td>
<td>Cell 6</td>
</tr>
</table>
</body>
</html>