blob: 46d37d8ed89a3860dc52c133453b92c9e3ebd7da (
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Testcase for bug 1177726</title>
</head>
<body>
<canvas id="c" width="400" height="200">
<p>No canvas.</p>
</canvas>
<script>
var canvas = document.getElementsByTagName("canvas")[0];
var ctx = canvas.getContext('2d');
ctx.font = "120px 'Helvetica'";
ctx.lineWidth = 15;
ctx.lineJoin = "round";
ctx.strokeText("Ehsan", 20, 110);
</script>
</body>
</html>
|