blob: 09c6c246cc68d7e9df57420a5593b20c9b7848d8 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
body {
height: 2049px; /* Cause view-size limits to kick in on Leopard. */
}
.box {
position: absolute;
width: 100px;
height: 100px;
}
.test {
will-change: transform;
background-color: green;
}
.indicator {
background-color: red;
}
</style>
</head>
<body>
<!-- In the pixel results you should see no red. -->
<div class="indicator box"></div>
<div class="test box"></div>
</body>
</html>