mirror of
https://github.com/less/less.js.git
synced 2026-01-14 01:38:12 -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>
53 lines
1.0 KiB
CSS
53 lines
1.0 KiB
CSS
#strings {
|
|
background-image: url("http://son-of-a-banana.com");
|
|
quotes: "~" "~";
|
|
content: "#*%:&^,)!.(~*})";
|
|
empty: "";
|
|
brackets: "{" "}";
|
|
escapes: "\"hello\" \\world";
|
|
escapes2: "\"llo";
|
|
}
|
|
#comments {
|
|
content: "/* hello */ // not-so-secret";
|
|
}
|
|
#single-quote {
|
|
quotes: "'" "'";
|
|
content: '""#!&""';
|
|
empty: '';
|
|
semi-colon: ';';
|
|
}
|
|
#one-line {
|
|
image: url(http://tooks.com);
|
|
}
|
|
#crazy {
|
|
image: url(http://), "}", url("http://}");
|
|
}
|
|
#interpolation {
|
|
url: "http://lesscss.org/dev/image.jpg";
|
|
url2: "http://lesscss.org/image-256.jpg";
|
|
url3: "http://lesscss.org#456";
|
|
url4: "http://lesscss.org/hello";
|
|
url5: "http://lesscss.org/54.4px";
|
|
}
|
|
.mix-mul-class {
|
|
color: blue;
|
|
color: red;
|
|
color: black;
|
|
color: orange;
|
|
}
|
|
.watermark {
|
|
family: Univers, Arial, Verdana, San-Serif;
|
|
}
|
|
#iterated-interpolation .mixin {
|
|
width: 100px;
|
|
weird: 100px;
|
|
width-str: "100px";
|
|
weird-str: "100px";
|
|
}
|
|
#iterated-interpolation .interpolation-mixin {
|
|
width: 100px;
|
|
weird: 100px;
|
|
width-str: "100px";
|
|
weird-str: "100px";
|
|
}
|