blob: 5ca4f6ec02227ee8e73b2145efa5c4204603de73 [file] [log] [blame]
<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 {
will-change: transform;
}
</style>
</head>
<body>
<div class="green composited">
<div class="blue composited">
</div>
</div>
</body>
</html>