Skip to content

Commit

Permalink
Add specs for issue 2140
Browse files Browse the repository at this point in the history
This PR add specs for sass/libsass#2140
  • Loading branch information
xzyfer committed Aug 4, 2016
1 parent ccca8b2 commit ff18b29
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
17 changes: 17 additions & 0 deletions spec/libsass-todo-issues/issue_2140/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
:root {
--teal: #444; }

a {
content: var(--teal); }

b {
content: -red; }

c {
content: +-blue; }

d {
content: -green; }

e {
content: +yellow; }
9 changes: 9 additions & 0 deletions spec/libsass-todo-issues/issue_2140/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
:root {
--teal: #444;
}

a { content: var(--teal) }
b { content: (- red) }
c { content: (+- blue) }
d { content: (-green) }
e { content: (+ yellow) }

0 comments on commit ff18b29

Please sign in to comment.