summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1276161-1b.html
blob: 68a14a09c62b66a2c4d156c8e0091991c0902819 (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
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>Test for bug 1276161 - dashed lines in canvas should look different from solid lines</title>

<canvas id="canvas"></canvas>

<script>

var canvas = document.getElementById('canvas');
canvas.width = 200;
canvas.height = 200;

var ctxx = canvas.getContext('2d');
ctxx.strokeStyle = 'black';
ctxx.setLineDash([2,3]);
ctxx.moveTo(10, 10);
ctxx.lineWidth = 2;
ctxx.lineTo(30, 30);
ctxx.stroke();
ctxx.restore();

</script>
</body>
</html>