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
The spec requires matching both lowercase and uppercase. The general
solution is to copy the identifier into a temporary stack allocated
buffer and do the case conversion there, before matching.
Fixes#105
The spec requires matching both lowercase and uppercase. The general
solution is to copy the identifier into a temporary stack allocated
buffer and do the case conversion there, before matching.
Fixes#105
The code in
color
currently only handles lowercase idents while the spec says it should be case insensitive.This also impacts use from svgtypes which currently tests that mixed cases work.
svgtypes expects that these parse:
"RGB(254, 203, 231)"
"RgB(254, 203, 231)"
RED
ReD
The text was updated successfully, but these errors were encountered: