Skip to content

Commit

Permalink
Merge pull request #1091 from mgreter/todo/issue_2347
Browse files Browse the repository at this point in the history
Add todo spec test for libsass issue 2347
  • Loading branch information
mgreter authored Mar 10, 2017
2 parents 499d91f + 9c524c8 commit 18b1c80
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions spec/libsass-todo-issues/issue_2347/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
custom2, [custom2], .custom2 {
display: flex;
}

[custom3], custom3, .custom3 {
display: flex;
}
14 changes: 14 additions & 0 deletions spec/libsass-todo-issues/issue_2347/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
%baz2 {
display: flex;
}
%baz3 {
display: flex;
}

custom2, [custom2], .custom2 {
@extend %baz2
}

[custom3], custom3, .custom3 {
@extend %baz3
}

0 comments on commit 18b1c80

Please sign in to comment.