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

Bug Report #1409

Closed
xiaoxiaosl opened this issue Jul 28, 2015 · 3 comments
Closed

Bug Report #1409

xiaoxiaosl opened this issue Jul 28, 2015 · 3 comments

Comments

@xiaoxiaosl
Copy link

The libsass have a bug that for example

.test {
 content:'test';
 @at-root . #{&}_c{
      content::' test_c'
   }
}

Libsass

.test{ content: 'test'}
.test .test_c{ content: 'test_c'}

Ruby Sass

.test{ content: 'test'}
.test_c{ content: 'test_c'}
@xzyfer
Copy link
Contributor

xzyfer commented Jul 28, 2015

@Prince-Raul the code you have supplied is not valid Sass. It does not compile with Ruby Sass.

I assume you meant the following

.test {
  content: 'test';

  @at-root #{&}_c {
    content: 'test_c'
  }
}

In which case this is a duplicate or #1210 and has been fixed. It will be in the next version of LibSass.

@xiaoxiaosl
Copy link
Author

@xzyfer
sorry, I write the code was wrong!
I found the bug width #1210,ths!
LIbsass when the next version released?

@xzyfer
Copy link
Contributor

xzyfer commented Jul 29, 2015

In the next month or so.

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

No branches or pull requests

2 participants