Skip to content

Commit

Permalink
Add specs for issue 1332
Browse files Browse the repository at this point in the history
This PR add specs for sass/libsass#1332
  • Loading branch information
xzyfer committed Jul 13, 2015
1 parent aca6a10 commit 2c4a834
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 0 deletions.
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1332/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.box1 { color: #333333; }

.box2 { color: #202020; }

.box3 { color: rgba(51, 51, 51, 0.7); }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.box1{color:#333}.box2{color:#202020}.box3{color:rgba(51,51,51,0.7)}
11 changes: 11 additions & 0 deletions spec/libsass-todo-issues/issue_1332/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.box1 {
color: #333333;
}

.box2 {
color: #202020;
}

.box3 {
color: rgba(51, 51, 51, 0.7);
}
8 changes: 8 additions & 0 deletions spec/libsass-todo-issues/issue_1332/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.box1 {
color: #333333; }

.box2 {
color: #202020; }

.box3 {
color: rgba(51, 51, 51, 0.7); }
9 changes: 9 additions & 0 deletions spec/libsass-todo-issues/issue_1332/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.box1 {
color: rgb(20%, 20%, 20%);
}
.box2 {
color: rgb(32, 32, 32);
}
.box3 {
color: rgba(20%, 20%, 20%, 0.7);
}

0 comments on commit 2c4a834

Please sign in to comment.