gecko/layout/reftests/svg/as-image/canvas-drawImage-scale-2b.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

27 lines
765 B
HTML

<html class="reftest-wait">
<head>
<script type="text/javascript">
function go() {
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
// Draw some orange
ctx.fillStyle = "orange";
ctx.fillRect(0, 0, 200, 200);
// Instantiate an image. Once it has loaded, draw it & take snapshot.
var image = new Image();
image.onload = function() {
ctx.scale(2, 2);
ctx.drawImage(image, 0, 0);
document.documentElement.removeAttribute("class");
}
image.src ="squaredCircle-viewBox-100x100.svg";
}
</script>
</head>
<body onload="go()">
<canvas id="canvas" width="200" height="200"></canvas>
</body>
</html>