summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/2d.text-outside-of-the-flat-tree-ref.html
blob: 707bafd3203610433808979232509d6a506dc3d5 (plain)
1
2
3
4
5
6
7
8
9
<!doctype html>
<title>Test reference</title>
<canvas id="canvas"></canvas>
<script>
  let canvas = document.getElementById("canvas");
  let ctx = canvas.getContext("2d");
  ctx.font = "10px sans-serif";
  ctx.fillText('Hello, world', 10, 10);
</script>