mirror of
https://github.com/less/less.js.git
synced 2026-01-09 15:48:08 -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>
16 lines
342 B
Plaintext
16 lines
342 B
Plaintext
.named-colors-in-expressions {
|
|
color-0: 0 -red;
|
|
color-1: 1 - red;
|
|
color-2: red * 2;
|
|
color-3: 2 * red;
|
|
@3: -red;
|
|
&-bar@{3} {x: y}
|
|
@color: red;
|
|
&-bar@{color} {a: a};
|
|
background-color: blue-2;
|
|
color: green-black;
|
|
animation: blue-change 5s infinite;
|
|
}
|
|
.division {
|
|
value: ((16px ./ 2) / 2) / 2;
|
|
} |