mirror of
https://github.com/servo/servo
synced 2026-05-10 00:52:08 +02:00
11 lines
251 B
HTML
11 lines
251 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<canvas id="canvas" width="100" height="100"></canvas>
|
|
<script>
|
|
var canvas = document.getElementById("canvas");
|
|
var ctx = canvas.getContext('2d');
|
|
ctx.fillStyle = 'green';
|
|
ctx.fillRect(50, 50, 50, 50);
|
|
</script>
|
|
</html>
|