blob: c7d906f517297d797c7a7516ad6ad076d81e502d [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
div {
width: 96px;
height: 96px;
background-color: green;
margin: 10px;
}
#one {
-webkit-transform: translateZ(1px);
}
#two {
-webkit-transform: translateZ(1px);
}
</style>
</head>
<body>
<!-- both should be visible - two green squares in the page -->
<div id="one"></div>
<div id="two"></div>
</body>
</html>