Files
less.js/test/less/debug/linenumbers.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

23 lines
194 B
Plaintext

@charset "UTF-8";
@import "import/test.less";
.start() {
.test2 {
color: red;
}
}
.mix() {
color: black;
}
.test1 {
.mix();
}
.start();
.mixin_import1();
.mixin_import2();