blob: 2d3dc7a8db98f01bd87f5c728ec8880f1875145c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
.box {
position: absolute;
overflow: hidden;
width: 0;
height: 0;
}
.indicator {
border: 50px solid red;
}
.test {
border: 50px solid green;
will-change: transform;
}
</style>
</head>
<body>
<div class="indicator box"></div>
<div class="test box"></div>
</body>
</html>