blob: 1291631ef6d851c8be1bc0806c5ce2ef7b5503c2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This tests that parent clipping is applied properly when ancestor border-radius is present.</title>
<style>
.outer {
overflow: hidden;
border-radius: 20px 0px 0px 0px;
}
.inner {
overflow: hidden;
position: relative;
height: 10px;
width: 10px;
}
.content {
width: 100px;
height: 100px;
background-color: red;
}
</style>
</head>
<body>
<div class=outer>
<div class=inner>
<div class=content></div>
</div>
</div>
</body>
</html>