-
-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for none
#228
Comments
Even when we generate a color with |
Culprit is in serialize.js // Convert NaN to zeros to have a chance at a valid CSS color
// Also convert -0 to 0
// This also clones it so we can manipulate it
coords = coords.map(c => c? c : 0); |
So there are two components to this:
The last bit is tricky: we want
Then, if the color has
|
Done, we can probably close this now. |
@LeaVerou our color parsing tests are still failing because they expect to find |
They're all passing, so closing this again |
We currently don't accept the keyword
none
, nor do we generate it on serialization.The text was updated successfully, but these errors were encountered: