Mypal/layout/reftests/table-bordercollapse/bug1375518-2.html

22 lines
339 B
HTML

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