blob: 26330ac52a0f1ceae36ceca76da71c562a4399ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test to ensure canvas not in doc gets default properties</title>
</head>
<body>
<div style="font: 10px sans-serif; direction: ltr">
<canvas id="c" width="512" height="256"></canvas>
</div>
<script type="text/javascript">
var canvas = document.getElementById('c');
var ctx = canvas.getContext('2d');
var str = 'BLEARGH!';
ctx.font = '2em sans-serif';
ctx.fillStyle = 'black';
ctx.textAlign = 'center';
ctx.fillText(str, 256, 128);
</script>
</body>
</html>
|