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