1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/654950-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<body> 1.7 +<div style="opacity:0.8; background-color: gray;"> 1.8 + <div style="overflow: hidden; -moz-transform: translate(0,10px);"> 1.9 + <canvas id="canvas" width="256" height="256"></canvas> 1.10 + </div> 1.11 +</div> 1.12 +<script> 1.13 +var ctx = document.getElementById("canvas").getContext("2d"); 1.14 +ctx.fillStyle = "yellow"; 1.15 +ctx.fillRect(0, 0, 256, 50); 1.16 +ctx.fillStyle = "lime"; 1.17 +ctx.fillRect(0, 50, 256, 206); 1.18 +</script> 1.19 +</body> 1.20 +</html>