1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:48:11 +00:00
serenity/Tests/LibWeb/Layout/input/table/border-conflict-resolution-with-col.html
Andi Gallo 8090adf268 LibWeb: Add partial implementation of border conflict resolution
Fix handling of border style specified per column as well.
2023-06-10 11:17:21 +02:00

42 lines
No EOL
573 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Table with border conflict resolution with col</title>
<style>
table {
border-collapse: collapse;
}
td {
border: 1px solid black;
padding: 10px 20px;
}
</style>
</head>
<body>
<table>
<colgroup>
<col style="border: 5px solid black">
</colgroup>
<tbody>
<tr>
<td>A</td>
</tr>
<tr>
<td>B</td>
</tr>
<tr>
<td>C</td>
</tr>
<tr>
<td>D</td>
</tr>
</tbody>
</table>
</body>
</html>