blob: dbebe298e42291a32f58cd39bfeae301c5ca818e [file] [log] [blame]
<html>
<head>
<style type="text/css" media="screen">
.transformed {
height: 100px;
width: 100px;
margin: 20px;
transform: scale(2);
transform-origin: top left;
}
.layoutroot {
height: 100px;
width: 100px;
overflow: hidden;
background-color: red;
}
</style>
</head>
<body>
<p>Tests repaint after layout of a subtree, inside a transformed element. You should see a large green square below.</p>
<div class="transformed">
<div class="layoutroot">
<div id="target" style="height: 100px; width: 100px; background-color: green;"></div>
</div>
</div>
</body>
</html>