haikuwebkit/LayoutTests/compositing/background-color/background-color-container....

28 lines
649 B
HTML

<html>
<head>
<style type="text/css">
.green {
width: 100px;
height: 100px;
background-color: green;
display: block;
}
.blue {
width: 50px;
height: 50px;
background-color: blue;
display: block;
}
.composited {
-webkit-transform: translateZ(0);
}
</style>
</head>
<body>
<div class="green composited">
<div class="blue composited">
</div>
</div>
</body>
</html>