blob: 8c61642671c5a5a5815e887094f55c95ac5eca10 (
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>Not-Reference for 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';
// Draw a solid line
ctxx.moveTo(10, 10);
ctxx.lineWidth = 2;
ctxx.lineTo(30, 30);
ctxx.stroke();
ctxx.restore();
</script>
</body>
</html>
|