mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
12 lines
296 B
HTML
12 lines
296 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<canvas id ="canvas" width="100" height="100" style="margin-left: 2px"></canvas>
|
|
<script>
|
|
var canvas = document.getElementById('canvas');
|
|
var context = canvas.getContext("2d");
|
|
context.fillStyle = 'green';
|
|
context.fillRect(0, 0, 100, 100);
|
|
</script>
|
|
</body>
|
|
</html>
|