Skip to content

Commit 29155c9

Browse files
committed
add another test-case
1 parent 8f38f4e commit 29155c9

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

test/cases/media.many.css

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
@media screen and (max-width: 481px)
3+
.collection.two,
4+
.collection.three
5+
width: 400px
6+
background: red
7+
.item
8+
margin-left: 0

test/cases/media.many.out.css

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
@media screen and (max-width: 481px) {
2+
.collection.two .item,
3+
.collection.three .item {
4+
margin-left: 0;
5+
}
6+
.collection.two,
7+
.collection.three {
8+
width: 400px;
9+
background: red;
10+
}
11+
}

0 commit comments

Comments
 (0)