summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/text/direction-ltr.html
blob: 42a39ac589c6da944af4cfc450675044d619be3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<meta charset="utf-8">
<title>HTML Canvas Test: the 'direction' property</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/canvas.html#text-styles">
<link rel="match" href="reference/direction-default-ref.html">
<meta name="assert" content="text rendering respects the direction property">
<style>
canvas {
  margin: 10px;
  border: 1px solid gray;
}
</style>

<canvas id="c" width="300" height="300" dir="rtl"></canvas>

<script>
let ctx = c.getContext("2d");
ctx.direction = "ltr";
ctx.font = "16px sans-serif";
ctx.textAlign = "left";
ctx.fillText("Hello World!", 150, 50);
ctx.textAlign = "right";
ctx.fillText("Hello World!", 150, 100);
ctx.textAlign = "start";
ctx.fillText("Hello World!", 150, 150);
ctx.textAlign = "end";
ctx.fillText("Hello World!", 150, 200);
ctx.textAlign = "center";
ctx.fillText("Hello World!", 150, 250);
</script>