blob: 616f6344a6908f312f51d40315a05a884627f75b [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.box {
width: 200px;
height: 200px;
margin: 10px;
background-color: silver;
}
.composited {
transform: translateZ(0);
}
.rounded {
margin: 20px;
overflow: hidden;
border-radius: 0px;
z-index: 0;
}
.rounded .composited {
background-color: blue;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="composited rounded box">
<div class="composited">
&nbsp;
</div>
&nbsp;
</div>
</body>
</html>