Index: trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java
===================================================================
--- trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java	(revision 9594)
+++ trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java	(revision 9595)
@@ -66,6 +66,12 @@
                         // If not, check if we have either a deprecated mapcss test for it
                         Node n = new Node();
+                        Way w = new Way();
+                        Relation r = new Relation();
                         n.put(key, value);
-                        if (mapCssTagChecker.getErrorsForPrimitive(n, false).isEmpty()) {
+                        w.put(key, value);
+                        r.put(key, value);
+                        if (mapCssTagChecker.getErrorsForPrimitive(n, false).isEmpty()
+                         && mapCssTagChecker.getErrorsForPrimitive(w, false).isEmpty()
+                         && mapCssTagChecker.getErrorsForPrimitive(r, false).isEmpty()) {
                             // Or a legacy tagchecker ignore rule
                             if (!TagChecker.isTagIgnored(key, value)) {
