gecko/layout/reftests/bugs/632781-ref.html
Ehsan Akhgari 42ecdcdea2 Back out changeset f3d13890fbe3 because of Windows reftest orange; a=orange
--HG--
extra : rebase_source : c7e2bdd935612251477b264ba64c65531916d0a3
2011-02-15 13:30:33 -05:00

14 lines
338 B
HTML

<!DOCTYPE html>
<html>
<body>
<div style="width: 120px; height: 120px; overflow: hidden">
<canvas width="120" height="120" id="c"></canvas>
</div>
<script>
var ctx = document.getElementById("c").getContext("2d");
ctx.fillStyle = "green";
ctx.fillRect(0, 0, 120, 120);
</script>
</body>
</html>