Files
less.js/test/less/debug/import/test.less
tscheinecker 1f19a043a5 only include the first @charset definition - subsequent ones will be
rendered as a comment + debugInfo when debugging is enabled.
2012-10-28 14:06:56 +00:00

25 lines
354 B
Plaintext

@charset "ISO-8859-1";
.mixin_import1() {
@media all {
.tst {
color: black;
@media screen {
color: red;
.tst3 {
color: white;
}
}
}
}
}
.mixin_import2() {
.tst2 {
color: white;
}
}
.tst3 {
color: grey;
}