source: josm/trunk/test/data/renderer/way-dashes/style.mapcss @ 12965

Last change on this file since 12965 was 12448, checked in by bastiK, 6 years ago

extend test case for MapCSSRendererTest (see #14980)

File size: 656 bytes
Line 
1canvas {
2    default-points: false;
3    default-lines: false;
4}
5
6way[test] {
7        width: 10;
8        color: red;
9}
10
11way[test=style5] {
12        dashes: 3,3,10,3;
13}
14
15way[test=style4] {
16        dashes: 0.2,5;
17}
18
19way[test=style3] {
20        color: blue;
21        dashes: list(12, 2);
22        dashes-offset: 1;
23}
24
25way[test=style2] {
26        dashes: list(8, 4);
27        dashes-offset: 1;
28        dashes-background-color: green;
29}
30
31way[test=style1] {
32        dashes: 8, 4;
33        dashes-offset: 1;
34        dashes-background-color: green;
35        dashes-background-opacity: .5;
36}
37
38way[test=out-of-screen] {
39    width: 5;
40    color: teal;
41    opacity: 0.7;
42        dashes: 18, 14;
43        dashes-offset: 1;
44        dashes-background-color: khaki;
45        dashes-background-opacity: .8;
46}
47
Note: See TracBrowser for help on using the repository browser.