Changes between Initial Version and Version 1 of Ticket #17129


Ignore:
Timestamp:
2018-12-20T20:42:47+01:00 (7 years ago)
Author:
Klumbumbus
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #17129 – Description

    initial v1  
    11It is not currently possible to do the following:
    22{{{
     3#!mapcss
    34way[highway][turn:lanes][oneway][count(split("|", tag("turn:lanes"))) != tag("lanes")]:selected,
    45way[highway][turn:lanes][!oneway][2 * count(split("|", tag("turn:lanes"))) != tag("lanes")]:selected,
     
    1314Since I've got another test without the :selected psuedoclass, I can move the assertMatch/assertNoMatch to that test, e.g.
    1415{{{
     16#!mapcss
    1517way[highway][turn:lanes][oneway][count(split("|", tag("turn:lanes"))) != tag("lanes")],
    1618way[highway][turn:lanes][!oneway][2 * count(split("|", tag("turn:lanes"))) != tag("lanes")],
     
    2325instead of
    2426{{{
    25 
     27#!mapcss
    2628way[highway][turn:lanes][oneway][count(split("|", tag("turn:lanes"))) != tag("lanes")],
    2729way[highway][turn:lanes][!oneway][2 * count(split("|", tag("turn:lanes"))) != tag("lanes")],