Skip to content
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

Math operations. #2042

Closed
dangreen opened this issue Apr 23, 2016 · 1 comment · Fixed by #2059
Closed

Math operations. #2042

dangreen opened this issue Apr 23, 2016 · 1 comment · Fixed by #2059

Comments

@dangreen
Copy link

dangreen commented Apr 23, 2016

Sample

.wizard-editor {
    transform: scale(50/1);
    transform: scale((50/1));
    transform: scale( (50/1) );
}  

libsass 3.5.5

.wizard-editor {
  transform: scale(50/1);
  transform: scale(50/1);
  transform: scale(50/1); }

libsass 3.3.2 (sassmeister)

.wizard-editor {
  transform: scale(50);
  transform: scale(50);
  transform: scale(50); }

expected

.wizard-editor {
  transform: scale(50/1);
  transform: scale(50);
  transform: scale(50); }
@mgreter
Copy link
Contributor

mgreter commented Apr 23, 2016

This was quite probably changed with #1986. Sorry about that regression, but as we can see this has not been covered by our spec test yet (failing is always a painful and steady way to progress).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants