summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/dash-1.html
blob: 28b228e938e9ab232f3085a570d6c85f021008f1 (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
32
33
34
<html>
<head>
  <script type="text/javascript">
window.onload = function() {
    var ctx = document.getElementById("c1").getContext("2d");

    ctx.lineWidth = 5;

    ctx.setLineDash([ 5, 10 ]);  // 5 on, 10 off
    ctx.moveTo(50, 50);
    ctx.lineTo(250, 50);
    ctx.stroke();
    ctx.beginPath();

    ctx.lineDashOffset = 5;
    ctx.moveTo(50, 100);
    ctx.lineTo(250, 100);
    ctx.stroke();
    ctx.beginPath();

    ctx.lineDashOffset = 5;
    ctx.setLineDash([ 5 ]);  // 5 on, 5 off
    ctx.moveTo(50, 150);
    ctx.lineTo(250, 150);
    ctx.stroke();
    ctx.beginPath();

}
  </script>
</head>
<body style="padding: 0px; margin: 0px;">
  <div><canvas id="c1" width="300" height="300"></canvas></div>
</body>
</html>