<!doctype html> | |
<html> | |
<head> | |
<style> | |
#article { | |
-webkit-flow-into: flow; | |
width: 50px; | |
height: 100px; | |
background-color: green; | |
} | |
#region { | |
-webkit-flow-from: flow; | |
width: 50px; | |
height: 50px; | |
border: 5px solid blue; | |
border-radius: 10px; | |
position: absolute; | |
top: 100px; | |
left: 50px; | |
} | |
#redBox { | |
width: 50px; | |
height: 30px; | |
background-color: red; | |
position: absolute; | |
top: 175px; | |
left: 55px; | |
} | |
</style> | |
</head> | |
<body> | |
<p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=103684" style="text-decoration: none;"> [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="article"></div> | |
<div id="redBox"></div> | |
<div id="region"></div> | |
</body> | |
</html> |