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
{{ message }}
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.
According to the CSS docs (http://www.w3.org/TR/CSS2/selector.html § 5.10), pseudo elements and pseudo classes are case-insensitive. Values like :first-child, :First-Child or :FIRST-CHILD should be parsed in the same way.
The following snippet validates correctly with the w3 CSS validator but fails to be parsed with CsCss 1.0.1.0:
According to the CSS docs (http://www.w3.org/TR/CSS2/selector.html § 5.10), pseudo elements and pseudo classes are case-insensitive. Values like
:first-child
,:First-Child
or:FIRST-CHILD
should be parsed in the same way.The following snippet validates correctly with the w3 CSS validator but fails to be parsed with CsCss 1.0.1.0:
I've tested it using the project sources by adding the following test case :
As a temporary / permanent workaround I'll update my CSS files to use lower case pseudo elements.
The text was updated successfully, but these errors were encountered: