-
Notifications
You must be signed in to change notification settings - Fork 464
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
Error handling interpolated if call #1273
Comments
Minimal test case: test {
src: url(test.eot#{if(true, '?#{42}', '')});
} expected: test {
src: url(test.eot?42); } |
mgreter
added a commit
to mgreter/sass-spec
that referenced
this issue
Jun 12, 2015
mgreter
added a commit
to mgreter/sass-spec
that referenced
this issue
Jun 13, 2015
mgreter
added a commit
to mgreter/sass-spec
that referenced
this issue
Jun 13, 2015
mgreter
added a commit
to mgreter/libsass
that referenced
this issue
Jun 14, 2015
mgreter
added a commit
to mgreter/libsass
that referenced
this issue
Jun 23, 2015
mgreter
added a commit
to mgreter/libsass
that referenced
this issue
Jun 30, 2015
mgreter
added a commit
to mgreter/libsass
that referenced
this issue
Jun 30, 2015
mgreter
added a commit
to mgreter/libsass
that referenced
this issue
Jun 30, 2015
xzyfer
added a commit
to xzyfer/sass-spec
that referenced
this issue
Jul 8, 2015
This PR activates specs for sass/libsass#1273
xzyfer
pushed a commit
to xzyfer/libsass
that referenced
this issue
Jul 8, 2015
This was referenced Jul 8, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi
First of all, thanks for great project!
There seems to be an issue with evolution of inline if statement.
Example:
In Sass produces expected output, but libsass (used via node-sass) trows following error:
Error can be workarounded by using quotes, though:
The text was updated successfully, but these errors were encountered: