blob: 6e68d8d42d3a8e74a0d512d1dae5227a563204d0 [file] [log] [blame]
<html>
<head>
<style type="text/css">
.green {
width: 100px;
height: 100px;
background-color: rgba(0, 128, 0, 0.5);
opacity: 0.5;
display: block;
}
.blue {
width: 100px;
height: 100px;
background-color: rgba(0, 0, 128, 0.5);
opacity: 0.5;
display: block;
transform: translate(50px, 50px);
}
.composited {
-webkit-transform-style: preserve-3d;
}
</style>
</head>
<body>
<div class="green composited">
<div class="blue composited">
</div>
</div>
</body>
</html>