haikuwebkit/LayoutTests/fast/text/canvas-color-fonts/fill-color-shadow-ctm-COLR-...

20 lines
483 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<canvas id="canvas" width="700" height="500" style="width: 700px; height; 500px;"></canvas>
<script>
let canvas = document.getElementById("canvas");
let context = canvas.getContext("2d");
context.fillStyle = "magenta";
context.fillRect(300, 120, 100, 100);
context.fillStyle = "aqua";
context.fillRect(320, 120, 20, 100);
context.fillStyle = "green";
context.fillRect(300, 220, 300, 100);
</script>
</body>
</html>