-
Notifications
You must be signed in to change notification settings - Fork 465
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
to-upper-case strings being double-quoted in 3.2.0-beta.6 #1127
Comments
I can confirm this is a regression in 3.2.0. Libsass 3.1.0 produced the expect output. Correction Libsass 3.1.0 produced semantically correct output, but failed to normalise to double quotes. |
Specs added sass/sass-spec#341 |
A git bisect shows this regression was introduced in 7877cfa |
I get the expected result? p {
content: "ABCD";
content: "ABCD";
content: "ABCDefg";
content: "ABCD"; }
Btw. I'm testing this on windows 7. |
I get the reported result on master on OSX p {
content: '"ABCD"';
content: '"ABCD"';
content: '"ABCD"efg';
content: "ABCD"; }
|
I've got a working fix for this. Required a decent amount of refactoring. I'll PR something tomorrow after I've cleaned it up. |
thank you! 😍 |
using
[email protected]
on OS X, the following SCSS:produces this CSS:
I would have expected:
I think this is a bug? Or have I just misunderstood?
The text was updated successfully, but these errors were encountered: