mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
10 lines
274 B
HTML
10 lines
274 B
HTML
<!DOCTYPE html>
|
|
<canvas id ="output" width="100" height="100" style="background: blue;"></canvas>
|
|
<script>
|
|
"use strict";
|
|
const canvas = document.getElementById('output');
|
|
const ctx = canvas.getContext('2d');
|
|
|
|
ctx.fillStyle = 'green';
|
|
ctx.fillRect(0, 0, 100, 100);
|
|
</script>
|