gecko-dev/layout/reftests/table-bordercollapse/bug1375518-3.html
Ya-Chieh Wu 2616e6e38b Bug 1375518 - Add reftest to check that border-radius is painted correctly on table. r=dbaron
MozReview-Commit-ID: KPuHtkttJim

--HG--
extra : rebase_source : 40658310460841ff95a6215bebcd3653d6fc62d1
extra : histedit_source : 0b2e14f7e4b02ed14d2266cd75ecef39d3944c79
2017-07-18 12:00:27 +08:00

23 lines
347 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Separated border model table</title>
<style>
div > span {
display: table-cell;
background-color: black;
height: 100px;
width: 100px;
border-radius: 50px;
}
div {
display: table;
border-collapse: separate;
}
</style>
</head>
<body>
<div><span></span></div>
</body>
</html>