test some more advanced sourcemaps and correct a bug in the output column

This commit is contained in:
Luke Page
2013-07-24 13:46:20 +01:00
parent b2a445c46c
commit f16e5142cf
3 changed files with 24 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
@var: black;
.a() {
color: red;
}
@@ -6,4 +8,19 @@
color: green;
.a();
color: blue;
background: @var;
}
.a, .b {
background: green;
.c, .d {
background: gray;
& + & {
color: red;
}
}
}
.extend:extend(.a all) {
color: pink;
}