1
0
Fork 0
firefox/layout/reftests/canvas/text-subpixel-1.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

14 lines
313 B
HTML

<!DOCTYPE HTML>
<html>
<body>
<canvas moz-opaque id="c" width="500" height="500"></canvas>
<script>
var ctx = c.getContext('2d');
ctx.fillStyle = "white";
ctx.fillRect(0, 0, 500, 500);
ctx.fillStyle = "black";
ctx.font = "50px sans-serif";
ctx.fillText("Hello", 200, 200);
</script>
</body>
</html>