tenfourfox/layout/reftests/border-radius/clipping-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

20 lines
354 B
HTML

<!doctype html>
<html><head>
<title>Border clipping</title>
<style>
.div1 { width: 50px; height: 50px;
border: 10px solid black;
border-radius: 20px;
position: absolute;
background: black;
left: 50px;
top: 50px;
background-clip: padding-box;
}
</style>
</head>
<body>
<div class="div1"></div>
</body></html>