1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 10:15:08 +00:00
serenity/Tests/LibWeb/Layout/input/table/nested-table-box-width.html
Andi Gallo 8b34af816e LibWeb: Report border box width for tables in a block
For the containing block, table borders are opaque and have to be
accounted when computing the table width since they use available space.
2023-06-25 08:13:04 +02:00

46 lines
No EOL
990 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Rowspan interaction with nested tables</title>
<style>
table {
border: 5px solid black;
border-spacing: 2px;
}
td {
border: 5px solid blue;
padding: 5px;
}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<td>X</td>
<td rowspan="2">
<table>
<tbody>
<tr>
<td>A</td>
</tr>
<tr>
<td>B</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>Y</td>
</tr>
</tbody>
</table>
</body>
</html>