зеркало из https://github.com/mozilla/gecko-dev.git
27 строки
765 B
HTML
27 строки
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>
|