1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/608636-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html style="background:white"> 1.6 +<body> 1.7 +<canvas id="b" style="position:absolute; left:0; top:0" width="20" height="20"></canvas> 1.8 +<div style="position:absolute; left:0; top:0; -moz-transform:rotate(45deg); height:400px; width:400px; opacity:0.5; border:1px solid black;"></div> 1.9 +<div style="position:absolute; left:-3px; top:-3px; -moz-transform:rotate(45deg); height:390px; width:390px; border:10px solid red;"></div> 1.10 +<script> 1.11 +function fillCanvas(id) { 1.12 + var ctx = document.getElementById(id).getContext("2d"); 1.13 + ctx.fillStyle = "black"; 1.14 + ctx.fillRect(0, 0, 10, 10); 1.15 +} 1.16 +fillCanvas("b"); 1.17 +</script> 1.18 +</body> 1.19 +</html>