Mypal/layout/reftests/transform-3d/preserve3d-2-ref.html

28 lines
553 B
HTML

<html>
<head>
<style type="text/css">
#grandparent {
-moz-transform-style: preserve-3d;
}
#parent {
-moz-transform-style: preserve-3d;
}
#child {
width: 100px;
height: 100px;
background-color: red;
-moz-transform: translatex(0px);
}
</style>
</head>
<body>
<div id="grandparent">
<div id="parent">
<div id="child"></div>
</div>
</div>
</body>
</html>