mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
issue #1547 - Correct z-ordering for some table parts and add reftests
This commit is contained in:
parent
c399e1938f
commit
edaea616b3
5 changed files with 164 additions and 2 deletions
47
layout/reftests/table-bordercollapse/bug1394226-ref.html
Normal file
47
layout/reftests/table-bordercollapse/bug1394226-ref.html
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue