Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <html>
2 <head>
3 <style type="text/css">
4 #grandparent {
5 width: 100px;
6 height: 100px;
7 -moz-transform-style: preserve-3d;
8 -moz-transform: translatex(200%);
9 }
10 #parent {
11 -moz-transform-style: preserve-3d;
12 }
14 #child {
15 width: 100px;
16 height: 100px;
17 background-color: red;
18 -moz-transform: translatex(-200px);
19 }
21 </style>
22 </head>
23 <body>
24 <div id="grandparent">
25 <div id="parent">
26 <div id="child"></div>
27 </div>
28 </div>
29 </body>
30 </html>