1
0
Fork 0
firefox/layout/reftests/canvas/text-not-in-doc-ref.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

21 lines
508 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Test to ensure canvas not in doc gets default properties</title>
</head>
<body>
<div style="font: 10px sans-serif; direction: ltr">
<canvas id="c" width="512" height="256"></canvas>
</div>
<script type="text/javascript">
var canvas = document.getElementById('c');
var ctx = canvas.getContext('2d');
var str = 'BLEARGH!';
ctx.font = '2em sans-serif';
ctx.fillStyle = 'black';
ctx.textAlign = 'center';
ctx.fillText(str, 256, 128);
</script>
</body>
</html>