blob: 3558d06b1facc53f2389964e48883207a81a377e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
body {
overflow:hidden;
}
.box {
position:absolute;
height: 200px;
width: 200px;
margin: 10px;
padding: 5px;
background-color: green;
will-change: transform;
overflow:hidden;
}
.box:hover {
transform: none;
}
.testbox {
position:absolute;
height: 200px;
width: 200px;
margin: 10px;
margin-left: 10px;
background-color: red;
}
</style>
</head>
<body>
<div class="testbox"></div>
<div id="frame-content" class="box"></div>
</body>
</html>