mirror of
https://github.com/less/less.js.git
synced 2026-01-21 05:08:10 -05:00
update tests
This commit is contained in:
@@ -49,4 +49,4 @@
|
||||
.unknowncolors {
|
||||
color: blue2;
|
||||
border: 2px solid superred;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,8 +45,8 @@
|
||||
}
|
||||
*/
|
||||
.selector, .lots, .comments {
|
||||
color: grey, /* blue */ orange;
|
||||
color: #808080, /* blue */ #ffa500;
|
||||
}
|
||||
#last {
|
||||
color: blue;
|
||||
color: #0000ff;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
.comma-delimited {
|
||||
background: url(bg.jpg) no-repeat, url(bg.png) repeat-x top left, url(bg);
|
||||
text-shadow: -1px -1px 1px red, 6px 5px 5px yellow;
|
||||
text-shadow: -1px -1px 1px #ff0000, 6px 5px 5px #ffff00;
|
||||
-moz-box-shadow: 0pt 0pt 2px rgba(255, 255, 255, 0.4) inset, 0pt 4px 6px rgba(255, 255, 255, 0.4) inset;
|
||||
}
|
||||
@font-face {
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
background: red;
|
||||
}
|
||||
.\34 04 strong {
|
||||
color: fuchsia;
|
||||
color: #ff00ff;
|
||||
font-weight: bold;
|
||||
}
|
||||
.trailingTest\+ {
|
||||
|
||||
@@ -64,7 +64,7 @@ p + h1 {
|
||||
width: .1em;
|
||||
background-color: #009998;
|
||||
background-image: url(images/image.jpg);
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(red), to(blue));
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), to(#0000ff));
|
||||
margin: ;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
|
||||
6
test/css/import.css
vendored
6
test/css/import.css
vendored
@@ -1,14 +1,14 @@
|
||||
@import "import-test-d.css";
|
||||
#import {
|
||||
color: red;
|
||||
color: #ff0000;
|
||||
}
|
||||
.mixin {
|
||||
height: 10px;
|
||||
color: red;
|
||||
color: #ff0000;
|
||||
}
|
||||
#import-test {
|
||||
height: 10px;
|
||||
color: red;
|
||||
color: #ff0000;
|
||||
width: 10px;
|
||||
height: 30%;
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
color: blue;
|
||||
width: 10px;
|
||||
height: 99%;
|
||||
border: 2px dotted black;
|
||||
border: 2px dotted #000000;
|
||||
}
|
||||
.one-arg {
|
||||
width: 15px;
|
||||
@@ -54,7 +54,7 @@ body {
|
||||
color: red;
|
||||
}
|
||||
.arguments {
|
||||
border: 1px solid black;
|
||||
border: 1px solid #000000;
|
||||
}
|
||||
.arguments2 {
|
||||
border: 0px;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.parens {
|
||||
border: 2px solid black;
|
||||
border: 2px solid #000000;
|
||||
margin: 1px 3px 16 3;
|
||||
width: 36;
|
||||
padding: 2px 36px;
|
||||
|
||||
@@ -2,14 +2,14 @@
|
||||
color: #998899;
|
||||
}
|
||||
.scope1 {
|
||||
color: blue;
|
||||
border-color: black;
|
||||
color: #0000ff;
|
||||
border-color: #000000;
|
||||
}
|
||||
.scope1 .scope2 {
|
||||
color: blue;
|
||||
color: #0000ff;
|
||||
}
|
||||
.scope1 .scope2 .scope3 {
|
||||
color: red;
|
||||
border-color: black;
|
||||
background-color: white;
|
||||
color: #ff0000;
|
||||
border-color: #000000;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
@@ -31,8 +31,8 @@
|
||||
url5: "http://lesscss.org/54.4";
|
||||
}
|
||||
.mix-mul-class {
|
||||
color: blue;
|
||||
color: red;
|
||||
color: blue;
|
||||
color: orange;
|
||||
color: #0000ff;
|
||||
color: #ff0000;
|
||||
color: #0000ff;
|
||||
color: #ffa500;
|
||||
}
|
||||
|
||||
@@ -17,14 +17,14 @@
|
||||
color: white;
|
||||
}
|
||||
.no-semi-column {
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
}
|
||||
.no-semi-column {
|
||||
color: white;
|
||||
white-space: pre;
|
||||
}
|
||||
.no-semi-column {
|
||||
border: 2px solid white;
|
||||
border: 2px solid #ffffff;
|
||||
}
|
||||
.newlines {
|
||||
background: the,
|
||||
|
||||
Reference in New Issue
Block a user