summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-paint-api/geometry-background-image-tiled-002-ref.html
blob: 3b3b2bc30e6e182cf8d0ffd22a8d64a623de76cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<style>
html, body { margin: 0; padding: 0; }
</style>
<body>
<canvas id ="canvas" width="50" height="20" style="position:relative; top:40px; left:50px"></canvas>
<script>
var canvas = document.getElementById('canvas');
var context = canvas.getContext("2d");
context.fillStyle = 'green';
context.fillRect(0, 0, 50, 20);
</script>
</body>
</html>