﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9485	"MapCSS: implement ""set"""	Don-vip	team	"From our very own [[Help/Styles/MapCSSImplementation#MapCSS0.2|implementation]]:

 * {{{set}}} is not supported, instead of
{{{
way[highway=footway] { set path; color: #FF6644; width: 2; }
way[highway=path]    { set path; color: brown; width: 2; }
way.path { text:auto; text-color: green; text-position: line; text-offset: 5; }
}}}
  you can write
{{{
way[highway=footway] { path-set : true; color: #FF6644; width: 2; }
way[highway=path]    { path-set : true; color: brown; width: 2; }
way[eval(prop(path-set))] { text:auto; text-color: green; text-position: line; text-offset: 5; }
}}}

I'd like to use this syntax in MapCSS-Tagchecker, we should support it."	enhancement	closed	normal	14.01	Core mappaint		fixed	mapcss grammar set	
