Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-viewport/zoom/canvas.html
<!DOCTYPE html> <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1909625"> <link rel="help" href="https://html.spec.whatwg.org/#dom-context-2d-font"> <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> <link rel="author" href="https://mozilla.org" title="Mozilla"> <link rel="match" href="canvas-ref.html"> <title>zoom is ignored for canvas</title> <style> canvas { zoom: 2; } </style> <script> document.addEventListener("DOMContentLoaded", () => { const ctx = document.getElementById("canvas").getContext("2d"); ctx.font = "48px serif"; ctx.fillText(ctx.font, 10, 50); }); </script> <canvas id="canvas" width="300" height="100"></canvas>
/css/css-viewport/zoom/canvas-ref.html
<!DOCTYPE html> <style> canvas { width: 600px; height: 200px; } </style> <script> document.addEventListener("DOMContentLoaded", () => { const ctx = document.getElementById("canvas").getContext("2d"); ctx.font = "48px serif"; ctx.fillText(ctx.font, 10, 50); }); </script> <canvas id="canvas" width="300" height="100"></canvas>