mirror of
https://github.com/less/less.js.git
synced 2026-01-14 09:47:58 -05:00
* Migrate Less to use valid CSS * Re-organize test structure * Lots of test refactoring * More test updates * Add restructured tests * WIP Signed-off-by: Matthew Dean <matthew-dean@users.noreply.github.com> * More fixes to tests * More test fixes * All tests passing * WIP fix tests * Finished fixing browser tests * Improve test coverage * Add debug tests * Add back debug tests to show equal test coverage * Fix browser tests * More test coverage * Fix sourcemap absolute path for CI * More source map normalization for Windows * Fix source map normalization * Another attempted fix for Windows --------- Signed-off-by: Matthew Dean <matthew-dean@users.noreply.github.com>
30 lines
561 B
CSS
30 lines
561 B
CSS
.eval {
|
|
js: 42;
|
|
js: 2;
|
|
js: "hello world";
|
|
js: 1, 2, 3;
|
|
title: "string";
|
|
ternary: true;
|
|
multiline: 2;
|
|
}
|
|
.scope {
|
|
--empty: ;
|
|
var: 42;
|
|
escaped: 7px;
|
|
}
|
|
.vars {
|
|
width: 8;
|
|
}
|
|
.escape-interpol {
|
|
width: hello world;
|
|
}
|
|
.arrays {
|
|
ary: "1, 2, 3";
|
|
ary1: "1, 2, 3";
|
|
}
|
|
.test-rule-tran {
|
|
one: opacity 0.3s ease-in 0.3s, max-height 0.6s linear, margin-bottom 0.4s linear;
|
|
two: [opacity 0.3s ease-in 0.3s, max-height 0.6s linear, margin-bottom 0.4s linear];
|
|
three: opacity 0.3s ease-in 0.3s, max-height 0.6s linear, margin-bottom 0.4s linear;
|
|
}
|