Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/canvas/mozPrintCallback-rect-001-print.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="match" href="mozPrintCallback-rect-001-print-ref.html">
<style>
canvas {
background: yellow;
}
</style>
<canvas id="myCanvas" width="80" height="80"></canvas>
<script>
myCanvas.mozPrintCallback = function (obj) {
let ctx = obj.context;
ctx.fillStyle = "cyan";
ctx.fillRect(0, 0, 60, 60);
obj.done();
}
</script>