Skip to content

Commit

Permalink
Merge pull request #826 from mgreter/todo/issue_2031
Browse files Browse the repository at this point in the history
Add todo spec test for libsass issue 2031
  • Loading branch information
mgreter committed Apr 22, 2016
2 parents dc79a05 + 2024efe commit 67d9bec
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
8 changes: 8 additions & 0 deletions spec/libsass-todo-issues/issue_2031/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
:not(.asd, .qwe) {
content: test; }

:not(.foo):not(.bar):not(.baz) {
content: test; }

test {
content: :not(.foo):not(.bar); }
13 changes: 13 additions & 0 deletions spec/libsass-todo-issues/issue_2031/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
:not(.asd, .qwe) {
content: test;
}
:not(.foo) {
content: test;
}
.bar, .baz {
@extend .foo;
}

test {
content: selector-extend(":not(.foo)", ".foo", ".bar");
}

0 comments on commit 67d9bec

Please sign in to comment.