mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-26 09:18:37 +09:00
This also adds a reftest for border radius on collapsed borders (should be ignored according to the CSS3 standard). We didn't do this before, except on internal elements.
17 lines
234 B
HTML
17 lines
234 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
td {
|
|
background-color: rgb(0, 255, 0);
|
|
margin-bottom: 10px;
|
|
height: 100px;
|
|
width:100px;
|
|
}
|
|
</style>
|
|
<table>
|
|
<tr>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|