mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|