blob: 274d78e607fa78e02ad82ab40a2b5fa9ba95fe38 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This tests if double borders with radius paint doubles instead of solid single borders.</title>
<style>
.outer {
width: 20px;
height: 20px;
border-style: double;
border-color: red;
}
.cover {
border: solid white 1px;
position: relative;
}
</style>
</head>
<body>
<div class=outer style="border-width: 0.5px; border-radius: 1px"></div></br>
<div class=outer style="border-width: 1px; border-radius: 5px"></div></br>
<div class=outer style="border-width: 3px; border-radius: 1px"><div class=cover style=" top: -3px; left: -3px; width: 24px; height: 24px;"></div></div></br>
<div class=outer style="border-width: 3.5px; border-radius: 1px"><div class=cover style="top: -3.5px; left: -3.5px; width: 25px; height: 25px;"></div></div></br>
<div class=outer style="border-width: 4px; border-radius: 2px"><div class=cover style="border-width: 3px; top: -4px; left: -4px; width: 22px; height: 22px;"></div></div></br>
</body>
</html>