mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
345 B
HTML
14 lines
345 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<canvas id="c" width="500" height="200"></canvas>
|
|
<div style="position:absolute; left:0; top:0; height:100px; width:100%; background:yellow"></div>
|
|
<script>
|
|
var c = document.getElementById("c");
|
|
var ctx = c.getContext("2d");
|
|
ctx.fillStyle = "blue;";
|
|
ctx.fillRect(0, 0, c.width, c.height);
|
|
</script>
|
|
</body>
|
|
</html>
|