Add additional test for nested selectors. Rebuild dist.

This commit is contained in:
Luke Page
2012-11-27 12:40:31 +00:00
parent 97d0b0205b
commit 697515b56c
3 changed files with 95 additions and 31 deletions

View File

@@ -31,3 +31,20 @@ div.ext7,
.ext6 > .ext7 {
width: 100px;
}
.ext,
.a .c,
.b .c {
test: 1;
}
.a,
.b {
test: 2;
}
.a .c,
.b .c {
test: 3;
}
.a .c .d,
.b .c .d {
test: 4;
}