Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <!DOCTYPE HTML>
2 <html>
3 <body>
4 <div style="opacity:0.8; background-color: gray;">
5 <div style="overflow: hidden; -moz-transform: translate(0,10px);">
6 <canvas id="canvas" width="256" height="256"></canvas>
7 </div>
8 </div>
9 <script>
10 var ctx = document.getElementById("canvas").getContext("2d");
11 ctx.fillStyle = "yellow";
12 ctx.fillRect(0, 0, 256, 50);
13 ctx.fillStyle = "lime";
14 ctx.fillRect(0, 50, 256, 206);
15 </script>
16 </body>
17 </html>