summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/canvas/bidi-multi-run-expected.html
blob: 899085c1ca517939825288375ff49ea5c5e6466f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE HTML>
<html>
<body>
<canvas id="canvas" width="300px" height="300px" style="border:1px solid #c3c3c3;"></canvas>

<script type="text/javascript">
  var ctx = document.getElementById('canvas').getContext("2d");
  ctx.font = '15px Arial';

  ctx.fillText('foobar', 10, 20);
  ctx.fillText('foorab', 10, 40);
  ctx.fillText('oofbar', 10, 60);
  ctx.fillText('raboof', 10, 80);

</script>
</body>