You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the unification of the universal selector, *, isn't symmetrical. selector-unify("*", ".a") returns (("*.a")), but selector-unify(".a", "*") returns ((".a")). The latter is correct; a universal selector without a namespace should be eliminated any time there's another selector present.