mirror of
https://github.com/servo/servo.git
synced 2025-07-20 05:43:41 +01:00
12 lines
315 B
HTML
12 lines
315 B
HTML
<!DOCTYPE html>
|
|
<canvas id="canvas" width="300" height="300"></canvas>
|
|
|
|
<script>
|
|
var canvas = document.getElementById("canvas");
|
|
var ctx = canvas.getContext("2d");
|
|
var img = new Image;
|
|
img.src = "resources/html5.png";
|
|
img.onload = function() {
|
|
ctx.drawImage(img, 0, 0);
|
|
};
|
|
</script>
|