test cases for recent fixes

This commit is contained in:
cloudhead
2010-05-07 00:49:03 -07:00
parent 3def6cf5bf
commit 7d2fdbda58
2 changed files with 26 additions and 0 deletions

View File

@@ -39,3 +39,9 @@ body {
.content .column {
margin: 600px;
}
#same-var-name {
radius: 5px;
}
#var-inside {
width: 10px;
}

View File

@@ -70,3 +70,23 @@ body {
.content {
.nested-ruleset(600px);
}
//
.same-var-name2(@radius) {
radius: @radius;
}
.same-var-name(@radius) {
.same-var-name2(@radius);
}
#same-var-name {
.same-var-name(5px);
}
//
.var-inside () {
@var: 10px;
width: @var;
}
#var-inside { .var-inside; }