-
Notifications
You must be signed in to change notification settings - Fork 99
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
should not remove spaces in calc() function #86
Comments
This was referenced Jan 18, 2017
lightman76
added a commit
to lightman76/CSSOM
that referenced
this issue
Jan 19, 2017
lightman76
added a commit
to lightman76/CSSOM
that referenced
this issue
Jan 19, 2017
@jonkemp please verify if the issue is resolved now. |
How do I verify this? |
Yeah looks good. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Spaces are mandatory inside CSS
calc()
function, and should not be removed in inlining.gets parsed to this
and that doesn't work in the browser.
linear-gradient also has the same issue.
linear-gradient(135deg, #00689b 0%, #00375a 90%, #00375a 90%, #003455 100%);
gets parsed to this
linear-gradient(135deg, #00689b0%, #00375a90%, #00375a90%, #003455100%);
The text was updated successfully, but these errors were encountered: