fune/testing/web-platform/tests/css/css-tables/border-collapse-dynamic-col-001-ref.html
Emilio Cobos Álvarez 00e140a8f8 Bug 1652384 - When inserting a col frame, invalidate all subsequent column BC borders. r=mats
This is the same fix as the fix for bug 711359, basically... We don't
shift the damage area otherwise which means that we would incorrectly
miss computing some borders.

Differential Revision: https://phabricator.services.mozilla.com/D84920
2020-07-26 19:02:12 +00:00

43 lines
709 B
HTML

<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Test Reference</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<style>
table {
border-collapse: collapse;
border-spacing: 0;
}
td {
padding: 10px;
border: 1px solid;
}
</style>
<table>
<colgroup>
<col>
<col>
<col>
<col>
</colgroup>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>