summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/749467-1.html
blob: 8b2bbaa2dfa9f45b89b01d3438671a0ce0946165 (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>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<p><canvas width="500" height="200" id="c"></canvas></p>
<script type="text/javascript">

  var canvas = document.getElementById('c');
  var ctx = canvas.getContext('2d');

  ctx.beginPath();

  ctx.lineWidth = 20;
  ctx.strokeStyle = 'rgb(0,0,0)';

  ctx.save();

  ctx.moveTo(10, 30);
  ctx.lineTo(50, 50);

  ctx.stroke();
  ctx.restore();

  ctx.lineTo(80, 80);
  ctx.stroke();

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