-
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
Segmentation fault with specific @media
and @at-root
combinations
#859
Comments
I've confirmed this is an issue on the latest master @media screen {
.two {
@at-root .one {
background: blue;
.three {
color: red;
}
}
}
} |
@xzyfer Does this mean I missed a case with my |
It would appear so. |
I've got a fix #861. I don't have time to create the spec now, but when I do this is ready to go. |
Spec added sass/sass-spec#248 |
This is fixed and will be 3.2. |
Awesome. I love using sassc, keep up the great work :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using sassc (compiled from master today) and ran across a segmentation fault with a specific combination of
@media
, selectors and@at-root
.This is the minimal code I've been able to reproduce the segmentation fault in.
Removing any bit of this example makes it compile just fine - it's something about the combination of rules (
background: blue
) and selectors (.three
) within the@at-root
declaration that's messing up.The text was updated successfully, but these errors were encountered: