issue #1547 - Correct z-ordering for some table parts and add reftests

This commit is contained in:
win7-7 2020-05-13 19:57:18 +03:00 committed by Roy Tam
commit edaea616b3
5 changed files with 164 additions and 2 deletions

View file

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>Table border collapse</title>
<style>
table {
border-collapse: collapse;
}
tr.odd {
background-color: LightCyan;
}
tr.even {
background-color: LightSkyBlue;
}
td {
border: 5px solid DarkBlue;
}
div {
height: 10px;
}
</style>
</head>
<body>
<div></div>
<table>
<tr class="odd">
<td>Cell 1-1</td>
<td>Cell 1-2</td>
</tr>
<tr class="even">
<td>Cell 2-1</td>
<td>Cell 2-2
<table>
<tr class="odd">
<td>Cell 2-2/1-1</td>
<td>Cell 2-2/1-2</td>
</tr>
<tr class="even">
<td>Cell 2-2/2-1</td>
<td>Cell 2-2/2-2</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>