gecko/layout/reftests/svg/as-image/canvas-drawImage-simple-1a.html
Daniel Holbert 7ea1c96ba4 Bug 589558, tests for SVG-as-image in canvas. a=tests-only
--HG--
rename : layout/reftests/svg/as-image/lime100x100.svg => layout/reftests/svg/as-image/lime50x50.svg
2010-10-12 12:00:31 -07:00

24 lines
688 B
HTML

<html class="reftest-wait">
<head>
<script type="text/javascript">
function go() {
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
var image = document.getElementById("image");
// Draw some orange
ctx.fillStyle = "orange";
ctx.fillRect(0, 0, 100, 100);
// Draw the SVG image on top of our red
ctx.drawImage(image, 0, 0);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="go()">
<canvas id="canvas" width="200" height="200"></canvas>
<img id="image" src="lime100x100.svg" style="display: none">
</body>
</html>