Skip to content

Commit 37dcad5

Browse files
committed
Add unit tests for transparent to make it clear what went wrong last time. fixes #806
1 parent e98a20a commit 37dcad5

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

test/css/colors.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,7 @@
5656
color: blue2;
5757
border: 2px solid superred;
5858
}
59+
.transparent {
60+
color: transparent;
61+
background-color: rgba(0, 0, 0, 0);
62+
}

test/less/colors.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,8 @@
6363
color: blue2;
6464
border: 2px solid superred;
6565
}
66+
67+
.transparent {
68+
color: transparent;
69+
background-color: rgba(0, 0, 0, 0);
70+
}

0 commit comments

Comments
 (0)