Add regression test for issue #247 - broken in master at 4d4abb2, works in 6eda91a

master-undefined-tagcontent
Dane Springmeyer 11 years ago
parent 8786bf51c7
commit cfc90da91e

@ -0,0 +1,12 @@
#countries {
::outline {
line-color: #85c5d3;
line-width: 4;
line-join: round;
//[ne_10m_adm = 'AAA'] { }
}
::inline {
line-color: black;
line-width: 1;
}
}

@ -0,0 +1,11 @@
<Style name="style-inline" filter-mode="first">
<Rule>
<LineSymbolizer stroke="#000000" stroke-width="1" />
</Rule>
</Style>
<Style name="style-outline" filter-mode="first">
<Rule>
<LineSymbolizer stroke="#85c5d3" stroke-width="4" stroke-linejoin="round" />
</Rule>
</Style>

@ -0,0 +1,12 @@
#countries {
::outline {
line-color: #85c5d3;
line-width: 4;
line-join: round;
[ne_10m_adm = 'AAA'] { }
}
::inline {
line-color: black;
line-width: 1;
}
}

@ -0,0 +1,15 @@
<Style name="style-inline" filter-mode="first">
<Rule>
<LineSymbolizer stroke="#000000" stroke-width="1" />
</Rule>
</Style>
<Style name="style-outline" filter-mode="first">
<Rule>
<Filter>([ne_10m_adm] = 'AAA')</Filter>
<LineSymbolizer stroke="#85c5d3" stroke-width="4" stroke-linejoin="round" />
</Rule>
<Rule>
<LineSymbolizer stroke="#85c5d3" stroke-width="4" stroke-linejoin="round" />
</Rule>
</Style>
Loading…
Cancel
Save