summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/text-emoji-notref.html
blob: 493bd1d269a4d041ea6c8f27eba4b4669dbdaade (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
<!DOCTYPE HTML>
<html>
<head>
<title>Test for Unicode emoji in canvas</title>
<script type="text/javascript">
function test(canvasID) {
  var canvas = document.getElementById(canvasID);
  var ctx = canvas.getContext('2d');
  var str = 'Hello';
  ctx.font = '2em sans-serif';
  ctx.fillStyle = 'black';
  ctx.textAlign = 'left';
  ctx.textBaseline = 'top';
  ctx.fillText(str, 10, 10);
};
</script>
</head>
<body>

<div lang="en" style="margin:20px; height:100px;">
<canvas id="c1" width="400" height="50"></canvas>
<script type="text/javascript">
  test("c1");
</script>
</div>

</body>
</html>