mirror of
https://github.com/servo/servo
synced 2026-05-12 01:46:28 +02:00
26 lines
548 B
HTML
26 lines
548 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
<body>
|
|
<canvas id="dest" height="100" width="100"></canvas>
|
|
<script type="text/javascript">
|
|
|
|
var destCanvas = document.getElementById('dest');
|
|
var destCtx = destCanvas.getContext('2d');
|
|
destCtx.fillStyle = "#FF0000";
|
|
destCtx.fillRect(0, 0, destCanvas.width, destCanvas.height);
|
|
destCtx.fillStyle = "#00FFFF";
|
|
destCtx.fillRect(25, 25, 25, 25);
|
|
destCtx.fillStyle = "#000000";
|
|
destCtx.fillRect(30, 30, 20, 20);
|
|
|
|
</script>
|
|
</body>
|
|
</html> |