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:
parent
940d9b98ae
commit
50df78d2a2
3 changed files with 73 additions and 1 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue