1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/602200-3.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<body> 1.7 +<div style="-moz-transform:translate(0.4px); position:absolute; top:0px;"> 1.8 + <canvas style="margin-left:0.4px; border:1px solid black; display:block" width="10" height="10" id="c"></canvas> 1.9 +</div> 1.10 +<div style="position:absolute; top:0px; width:12px; height:12px; background:black;"></div> 1.11 +<script> 1.12 +var c = document.getElementById("c"); 1.13 +var ctx = c.getContext('2d'); 1.14 +ctx.fillStyle = "black"; 1.15 +ctx.fillRect(0, 0, c.width, c.height); 1.16 +</script> 1.17 +</body> 1.18 +</html>