1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:37:35 +00:00

LibWeb: Fix upper limit of span when computing column measures

The maximum span limit has to be inclusive, not exclusive.
This commit is contained in:
Andi Gallo 2023-06-10 00:55:02 +00:00 committed by Andreas Kling
parent 940d9b98ae
commit 50df78d2a2
3 changed files with 73 additions and 1 deletions

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Computing column measures</title>
<style>
table, td {
border: 1px solid black;
border-spacing: 0px;
text-align: center;
}
</style>
</head>
<body>
<table>
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td colspan="2">CDE</td>
</tr>
</table>
</body>
</html>