blob: 33abb3082febdfc9db940d3cef53509f501c86d1 [file] [log] [blame]
<!doctype html>
<html>
<head>
<style>
#article {
width: 50px;
height: 100px;
background-color: green;
}
#region {
width: 50px;
height: 50px;
border: 5px solid blue;
border-radius: 10px;
position: absolute;
top: 100px;
left: 50px;
}
</style>
</head>
<body>
<p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=103684"> [CSS Regions] border-radius on a region causes overflow to be hidden</a>.</p>
<p>On success, you should not see any red below.</p>
<div id="region">
<div id="article"></div>
</div>
</body>
</html>