mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
14 lines
338 B
HTML
14 lines
338 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
<div style="width: 120px; height: 120px; overflow: hidden">
|
||
|
<canvas width="120" height="120" id="c"></canvas>
|
||
|
</div>
|
||
|
<script>
|
||
|
var ctx = document.getElementById("c").getContext("2d");
|
||
|
ctx.fillStyle = "green";
|
||
|
ctx.fillRect(0, 0, 120, 120);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|