haikuwebkit/LayoutTests/displaylists/layer-dispay-list.html

25 lines
463 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.box {
width: 100px;
height: 100px;
background-color: green;
border: 2px solid blue;
}
.composited {
-webkit-transform: translateZ(0);
}
</style>
<script src="resources/dump-target-display-list.js"></script>
</head>
<body>
<div id="target" class="composited box">
</div>
<pre id="output"></pre>
</body>
</html>