blob: e5875460184c7f2165b69e7ab3951dc3be63715c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
.container {
height: 100px;
width:100px;
background-color: green;
}
.reflected {
height: 100px;
width: 100px;
background-color: red;
-webkit-transform: rotate3d(0, 1, 0, 180deg);
-webkit-box-reflect: below;
-webkit-backface-visibility: hidden;
}
</style>
</head>
<body>
<!-- In the pixel results, a single green square should be visible. -->
<div class="container">
<div class="reflected">
</div>
</div>
</body>
</html>