blob: cc8dc55c230ae0d6af7413f30c3fd17e07dd0247 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
#multicol {
-webkit-column-width: 100px;
width: 401px;
height: 200px;
border: 5px solid black;
border-radius: 10%;
overflow: hidden;
background-color: orange;
}
#multicol:hover { background-color: lime; }
#content {
background-color: pink;
color: pink;
}
</style>
</head>
<body>
<a href="https://bugs.webkit.org/show_bug.cgi?id=133941">Bug 133941 - [New Multicolumn] Elements with rounded corners and overflow:hidden do not properly clip their content</a>
<p>The text passes if the columns are correctly clipped by the parent having border-radius.</p>
<div id="multicol">
<div id="content">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
</div>
</body>
</html>