less 2.5.1 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/Changelog.md +5 -1
  3. data/README.md +12 -0
  4. data/lib/less/js/.travis.yml +8 -0
  5. data/lib/less/js/CHANGELOG.md +22 -0
  6. data/lib/less/js/CONTRIBUTING.md +1 -1
  7. data/lib/less/js/Gruntfile.js +8 -0
  8. data/lib/less/js/README.md +5 -304
  9. data/lib/less/js/bin/lessc +16 -13
  10. data/lib/less/js/bower.json +2 -2
  11. data/lib/less/js/build/README.md +4 -303
  12. data/lib/less/js/build/build.yml +2 -0
  13. data/lib/less/js/dist/less-1.6.3.js +7627 -0
  14. data/lib/less/js/dist/less-1.6.3.min.js +16 -0
  15. data/lib/less/js/dist/less-1.7.0.js +7921 -0
  16. data/lib/less/js/dist/less-1.7.0.min.js +16 -0
  17. data/lib/less/js/dist/less-rhino-1.6.3.js +9020 -0
  18. data/lib/less/js/dist/less-rhino-1.7.0.js +9301 -0
  19. data/lib/less/js/dist/lessc-rhino-1.6.3.js +449 -0
  20. data/lib/less/js/dist/lessc-rhino-1.7.0.js +449 -0
  21. data/lib/less/js/lib/less/browser.js +22 -9
  22. data/lib/less/js/lib/less/functions.js +47 -16
  23. data/lib/less/js/lib/less/import-visitor.js +29 -5
  24. data/lib/less/js/lib/less/index.js +10 -3
  25. data/lib/less/js/lib/less/parser.js +139 -52
  26. data/lib/less/js/lib/less/to-css-visitor.js +26 -4
  27. data/lib/less/js/lib/less/tree/color.js +11 -1
  28. data/lib/less/js/lib/less/tree/detached-ruleset.js +20 -0
  29. data/lib/less/js/lib/less/tree/dimension.js +17 -6
  30. data/lib/less/js/lib/less/tree/directive.js +33 -29
  31. data/lib/less/js/lib/less/tree/import.js +8 -1
  32. data/lib/less/js/lib/less/tree/keyword.js +1 -0
  33. data/lib/less/js/lib/less/tree/media.js +3 -0
  34. data/lib/less/js/lib/less/tree/mixin.js +15 -11
  35. data/lib/less/js/lib/less/tree/rule.js +14 -4
  36. data/lib/less/js/lib/less/tree/ruleset-call.js +16 -0
  37. data/lib/less/js/lib/less/tree/ruleset.js +48 -19
  38. data/lib/less/js/package.json +13 -13
  39. data/lib/less/js/test/browser/css/postProcessor/postProcessor.css +4 -0
  40. data/lib/less/js/test/browser/less/postProcessor/postProcessor.less +4 -0
  41. data/lib/less/js/test/browser/runner-postProcessor-options.js +4 -0
  42. data/lib/less/js/test/browser/runner-postProcessor.js +3 -0
  43. data/lib/less/js/test/css/debug/linenumbers-all.css +2 -2
  44. data/lib/less/js/test/css/debug/linenumbers-comments.css +1 -1
  45. data/lib/less/js/test/css/debug/linenumbers-mediaquery.css +1 -1
  46. data/lib/less/js/test/css/detached-rulesets.css +71 -0
  47. data/lib/less/js/test/css/functions.css +21 -4
  48. data/lib/less/js/test/css/import-reference.css +23 -4
  49. data/lib/less/js/test/css/merge.css +8 -0
  50. data/lib/less/js/test/css/mixins-pattern.css +4 -0
  51. data/lib/less/js/test/css/scope.css +3 -0
  52. data/lib/less/js/test/css/variables-in-at-rules.css +18 -0
  53. data/lib/less/js/test/less/css-guards.less +3 -0
  54. data/lib/less/js/test/less/detached-rulesets.less +103 -0
  55. data/lib/less/js/test/less/errors/at-rules-undefined-var.less +4 -0
  56. data/lib/less/js/test/less/errors/at-rules-undefined-var.txt +4 -0
  57. data/lib/less/js/test/less/errors/detached-ruleset-1.less +6 -0
  58. data/lib/less/js/test/less/errors/detached-ruleset-1.txt +4 -0
  59. data/lib/less/js/test/less/errors/detached-ruleset-2.less +6 -0
  60. data/lib/less/js/test/less/errors/detached-ruleset-2.txt +4 -0
  61. data/lib/less/js/test/less/errors/detached-ruleset-3.less +4 -0
  62. data/lib/less/js/test/less/errors/detached-ruleset-3.txt +4 -0
  63. data/lib/less/js/test/less/errors/detached-ruleset-4.less +5 -0
  64. data/lib/less/js/test/less/errors/detached-ruleset-4.txt +3 -0
  65. data/lib/less/js/test/less/errors/detached-ruleset-5.less +4 -0
  66. data/lib/less/js/test/less/errors/detached-ruleset-5.txt +3 -0
  67. data/lib/less/js/test/less/errors/detached-ruleset-6.less +5 -0
  68. data/lib/less/js/test/less/errors/detached-ruleset-6.txt +4 -0
  69. data/lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.less +9 -0
  70. data/lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.txt +4 -0
  71. data/lib/less/js/test/less/errors/percentage-missing-space.less +3 -0
  72. data/lib/less/js/test/less/errors/percentage-missing-space.txt +4 -0
  73. data/lib/less/js/test/less/functions.less +25 -7
  74. data/lib/less/js/test/less/import-reference.less +7 -4
  75. data/lib/less/js/test/less/import/import-reference.less +8 -0
  76. data/lib/less/js/test/less/merge.less +20 -1
  77. data/lib/less/js/test/less/mixins-guards.less +7 -1
  78. data/lib/less/js/test/less/mixins-pattern.less +3 -0
  79. data/lib/less/js/test/less/scope.less +25 -0
  80. data/lib/less/js/test/less/variables-in-at-rules.less +20 -0
  81. data/lib/less/version.rb +1 -1
  82. metadata +39 -2
@@ -0,0 +1,4 @@
1
+ NameError: variable @name is undefined in {path}at-rules-undefined-var.less on line 2, column 12:
2
+ 1
3
+ 2 @keyframes @name {
4
+ 3 50% {width: 20px;}
@@ -0,0 +1,6 @@
1
+ @a: {
2
+ b: 1;
3
+ };
4
+ .a {
5
+ a: @a;
6
+ }
@@ -0,0 +1,4 @@
1
+ SyntaxError: Rulesets cannot be evaluated on a property. in {path}detached-ruleset-1.less on line 5, column 3:
2
+ 4 .a {
3
+ 5 a: @a;
4
+ 6 }
@@ -0,0 +1,6 @@
1
+ @a: {
2
+ b: 1;
3
+ };
4
+ .a {
5
+ a: @a();
6
+ }
@@ -0,0 +1,4 @@
1
+ ParseError: Unrecognised input in {path}detached-ruleset-2.less on line 5, column 3:
2
+ 4 .a {
3
+ 5 a: @a();
4
+ 6 }
@@ -0,0 +1,4 @@
1
+ @a: {
2
+ b: 1;
3
+ };
4
+ @a();
@@ -0,0 +1,4 @@
1
+ SyntaxError: properties must be inside selector blocks, they cannot be in the root. in {path}detached-ruleset-3.less on line 2, column 3:
2
+ 1 @a: {
3
+ 2 b: 1;
4
+ 3 };
@@ -0,0 +1,5 @@
1
+ .mixin-definition(@a: {
2
+ b: 1;
3
+ }) {
4
+ @a();
5
+ }
@@ -0,0 +1,3 @@
1
+ ParseError: Unrecognised input in {path}detached-ruleset-4.less on line 1, column 18:
2
+ 1 .mixin-definition(@a: {
3
+ 2 b: 1;
@@ -0,0 +1,4 @@
1
+ .mixin-definition(@b) {
2
+ @a();
3
+ }
4
+ .mixin-definition({color: red;});
@@ -0,0 +1,3 @@
1
+ SyntaxError: variable @a is undefined in {path}detached-ruleset-5.less on line 4, column 1:
2
+ 3 }
3
+ 4 .mixin-definition({color: red;});
@@ -0,0 +1,5 @@
1
+ .a {
2
+ b: {
3
+ color: red;
4
+ };
5
+ }
@@ -0,0 +1,4 @@
1
+ ParseError: Unrecognised input in {path}detached-ruleset-6.less on line 2, column 3:
2
+ 1 .a {
3
+ 2 b: {
4
+ 3 color: red;
@@ -0,0 +1,9 @@
1
+ .something {
2
+ & {
3
+ .a {value: a}
4
+ }
5
+
6
+ & {
7
+ .b {.a} // was Err. before 1.6.2
8
+ }
9
+ }
@@ -0,0 +1,4 @@
1
+ NameError: .a is undefined in {path}mixin-not-visible-in-scope-1.less on line 7, column 13:
2
+ 6 & {
3
+ 7 .b {.a} // was Err. before 1.6.2
4
+ 8 }
@@ -0,0 +1,3 @@
1
+ .a {
2
+ error: calc(1 %);
3
+ }
@@ -0,0 +1,4 @@
1
+ SyntaxError: Invalid % without number in {path}percentage-missing-space.less on line 2, column 3:
2
+ 1 .a {
3
+ 2 error: calc(1 %);
4
+ 3 }
@@ -28,7 +28,12 @@
28
28
  luma-blue: luma(#0000ff);
29
29
  luma-yellow: luma(#ffff00);
30
30
  luma-cyan: luma(#00ffff);
31
- luma-white-alpha: luma(rgba(255,255,255,0.5));
31
+ luma-differs-from-luminance: luma(#ff3600);
32
+ luminance-white: luma(#fff);
33
+ luminance-black: luma(#000);
34
+ luminance-black-alpha: luma(rgba(0,0,0,0.5));
35
+ luminance-red: luma(#ff0000);
36
+ luminance-differs-from-luma: luminance(#ff3600);
32
37
  contrast-filter: contrast(30%);
33
38
  saturate-filter: saturate(5%);
34
39
  contrast-white: contrast(#fff);
@@ -44,19 +49,31 @@
44
49
  contrast-light-thresh: contrast(#fff, #111111, #eeeeee, 0.5);
45
50
  contrast-dark-thresh: contrast(#000, #111111, #eeeeee, 0.5);
46
51
  contrast-high-thresh: contrast(#555, #111111, #eeeeee, 0.6);
47
- contrast-low-thresh: contrast(#555, #111111, #eeeeee, 0.1);
52
+ contrast-low-thresh: contrast(#555, #111111, #eeeeee, 0.09);
48
53
  contrast-light-thresh-per: contrast(#fff, #111111, #eeeeee, 50%);
49
54
  contrast-dark-thresh-per: contrast(#000, #111111, #eeeeee, 50%);
50
55
  contrast-high-thresh-per: contrast(#555, #111111, #eeeeee, 60%);
51
- contrast-low-thresh-per: contrast(#555, #111111, #eeeeee, 10%);
56
+ contrast-low-thresh-per: contrast(#555, #111111, #eeeeee, 9%);
57
+ replace: replace("Hello, Mars.", "Mars\.", "World!");
58
+ replace-captured: replace("This is a string.", "(string)\.$", "new $1.");
59
+ replace-with-flags: replace("One + one = 4", "one", "2", "gi");
60
+ replace-single-quoted: replace('foo-1', "1", "2");
61
+ replace-escaped-string: replace(~"bar-1", "1", "2");
62
+ replace-keyword: replace(baz-1, "1", "2");
52
63
  format: %("rgb(%d, %d, %d)", @r, 128, 64);
53
64
  format-string: %("hello %s", "world");
54
65
  format-multiple: %("hello %s %d", "earth", 2);
55
- format-url-encode: %('red is %A', #ff0000);
66
+ format-url-encode: %("red is %A", #ff0000);
67
+ format-single-quoted: %('hello %s', "single world");
68
+ format-escaped-string: %(~"hello %s", "escaped world");
56
69
  eformat: e(%("rgb(%d, %d, %d)", @r, 128, 64));
57
70
 
58
71
  unitless: unit(12px);
59
72
  unit: unit((13px + 1px), em);
73
+ unitpercentage: unit(100, %);
74
+
75
+ get-unit: get-unit(10px);
76
+ get-unit-empty: get-unit(10);
60
77
 
61
78
  hue: hue(hsl(98, 12%, 95%));
62
79
  saturation: saturation(hsl(98, 12%, 95%));
@@ -88,10 +105,11 @@
88
105
  pow: pow(4, 3);
89
106
  pow: pow(3, 3em);
90
107
  min: min(0);
91
- min: min("junk", 6, 5);
92
- min: min(1pc, 3pt);
108
+ min: min(6, 5);
109
+ min: min(1pt, 3pt);
110
+ min: min(1cm, 3mm);
93
111
  max: max(1, 3);
94
- max: max(3%, 1cm, 8%, 2mm);
112
+ max: max(3em, 1em, 2em, 5em);
95
113
  percentage: percentage((10px / 50));
96
114
  color: color("#ff0011");
97
115
  tint: tint(#777777, 13);
@@ -1,10 +1,6 @@
1
1
  @import (reference) url("import-once.less");
2
2
  @import (reference) url("css-3.less");
3
3
  @import (reference) url("media.less");
4
- /*
5
- The media statement above is invalid (no selector)
6
- We should ban invalid media queries with properties and no selector?
7
- */
8
4
  @import (reference) url("import/import-reference.less");
9
5
 
10
6
  .b {
@@ -15,4 +11,11 @@
15
11
 
16
12
  .visible:extend(.z all) {
17
13
  extend: test;
14
+ }
15
+
16
+ .test-mediaq-import {
17
+ .mixin-with-mediaq(340px);
18
+ }
19
+
20
+ .class:extend(.class all) {
18
21
  }
@@ -40,4 +40,12 @@
40
40
  pulled-in: yes;
41
41
  }
42
42
  /* comment pulled in */
43
+ }
44
+ @max-size: 450px;
45
+ .mixin-with-mediaq(@num) {
46
+ color: green;
47
+ test: @num;
48
+ @media (max-size: @max-size) {
49
+ color: red;
50
+ }
43
51
  }
@@ -56,4 +56,23 @@
56
56
  transform+: t2;
57
57
  background+: b2, b3;
58
58
  transform+: t3;
59
- }
59
+ }
60
+
61
+ .test-spaced {
62
+ transform+_: t1;
63
+ background+_: b1;
64
+ transform+_: t2;
65
+ background+_: b2, b3;
66
+ transform+_: t3;
67
+ }
68
+
69
+ .test-interleaved-with-spaced {
70
+ transform+_: t1s;
71
+ transform+: t2;
72
+ background+: b1;
73
+ transform+_: t3s;
74
+ transform+: t4 t5s;
75
+ background+_: b2s, b3;
76
+ transform+_: t6s;
77
+ background+: b4;
78
+ }
@@ -150,4 +150,10 @@
150
150
  .call-inner-lock-mixin {
151
151
  .inner-locked-mixin();
152
152
  }
153
- }
153
+ }
154
+ .bug-100cm-1m(@a) when (@a = 1) {
155
+ .failed {
156
+ one-hundred: not-equal-to-1;
157
+ }
158
+ }
159
+ .bug-100cm-1m(100cm);
@@ -1,6 +1,9 @@
1
1
  .mixin (...) {
2
2
  variadic: true;
3
3
  }
4
+ .mixin (@a...) {
5
+ named-variadic: true;
6
+ }
4
7
  .mixin () {
5
8
  zero: 0;
6
9
  }
@@ -76,4 +76,29 @@
76
76
  @subScopeOnly: 'inside';
77
77
  //use the mixin
78
78
  .mixinNoParam();
79
+ }
80
+ #parentSelectorScope {
81
+ @col: white;
82
+ & {
83
+ @col: black;
84
+ }
85
+ prop: @col;
86
+ & {
87
+ @col: black;
88
+ }
89
+ }
90
+ .test-empty-mixin() {
91
+ }
92
+ #parentSelectorScopeMixins {
93
+ & {
94
+ .test-empty-mixin() {
95
+ should: never seee 1;
96
+ }
97
+ }
98
+ .test-empty-mixin();
99
+ & {
100
+ .test-empty-mixin() {
101
+ should: never seee 2;
102
+ }
103
+ }
79
104
  }
@@ -0,0 +1,20 @@
1
+
2
+ @Eight: 8;
3
+ @charset "UTF-@{Eight}";
4
+
5
+ @ns: less;
6
+ @namespace @ns "http://lesscss.org";
7
+
8
+ @name: enlarger;
9
+ @keyframes @name {
10
+ from {font-size: 12px;}
11
+ to {font-size: 15px;}
12
+ }
13
+
14
+ .m(reducer);
15
+ .m(@name) {
16
+ @-webkit-keyframes @name {
17
+ from {font-size: 13px;}
18
+ to {font-size: 10px;}
19
+ }
20
+ }
@@ -1,3 +1,3 @@
1
1
  module Less
2
- VERSION = '2.5.1'
2
+ VERSION = '2.6.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: less
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.1
4
+ version: 2.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charles Lowell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-30 00:00:00.000000000 Z
11
+ date: 2014-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commonjs
@@ -62,6 +62,7 @@ files:
62
62
  - lib/less/js/.gitignore
63
63
  - lib/less/js/.jshintrc
64
64
  - lib/less/js/.npmignore
65
+ - lib/less/js/.travis.yml
65
66
  - lib/less/js/CHANGELOG.md
66
67
  - lib/less/js/CONTRIBUTING.md
67
68
  - lib/less/js/Gruntfile.js
@@ -127,6 +128,10 @@ files:
127
128
  - lib/less/js/dist/less-1.6.1.min.js
128
129
  - lib/less/js/dist/less-1.6.2.js
129
130
  - lib/less/js/dist/less-1.6.2.min.js
131
+ - lib/less/js/dist/less-1.6.3.js
132
+ - lib/less/js/dist/less-1.6.3.min.js
133
+ - lib/less/js/dist/less-1.7.0.js
134
+ - lib/less/js/dist/less-1.7.0.min.js
130
135
  - lib/less/js/dist/less-rhino-1.1.3.js
131
136
  - lib/less/js/dist/less-rhino-1.1.5.js
132
137
  - lib/less/js/dist/less-rhino-1.3.1.js
@@ -135,7 +140,11 @@ files:
135
140
  - lib/less/js/dist/less-rhino-1.4.0.js
136
141
  - lib/less/js/dist/less-rhino-1.5.1.js
137
142
  - lib/less/js/dist/less-rhino-1.6.2.js
143
+ - lib/less/js/dist/less-rhino-1.6.3.js
144
+ - lib/less/js/dist/less-rhino-1.7.0.js
138
145
  - lib/less/js/dist/lessc-rhino-1.6.2.js
146
+ - lib/less/js/dist/lessc-rhino-1.6.3.js
147
+ - lib/less/js/dist/lessc-rhino-1.7.0.js
139
148
  - lib/less/js/gradle/wrapper/gradle-wrapper.jar
140
149
  - lib/less/js/gradle/wrapper/gradle-wrapper.properties
141
150
  - lib/less/js/gradlew
@@ -162,6 +171,7 @@ files:
162
171
  - lib/less/js/lib/less/tree/color.js
163
172
  - lib/less/js/lib/less/tree/comment.js
164
173
  - lib/less/js/lib/less/tree/condition.js
174
+ - lib/less/js/lib/less/tree/detached-ruleset.js
165
175
  - lib/less/js/lib/less/tree/dimension.js
166
176
  - lib/less/js/lib/less/tree/directive.js
167
177
  - lib/less/js/lib/less/tree/element.js
@@ -177,6 +187,7 @@ files:
177
187
  - lib/less/js/lib/less/tree/paren.js
178
188
  - lib/less/js/lib/less/tree/quoted.js
179
189
  - lib/less/js/lib/less/tree/rule.js
190
+ - lib/less/js/lib/less/tree/ruleset-call.js
180
191
  - lib/less/js/lib/less/tree/ruleset.js
181
192
  - lib/less/js/lib/less/tree/selector.js
182
193
  - lib/less/js/lib/less/tree/unicode-descriptor.js
@@ -191,6 +202,7 @@ files:
191
202
  - lib/less/js/test/browser/common.js
192
203
  - lib/less/js/test/browser/css/global-vars/simple.css
193
204
  - lib/less/js/test/browser/css/modify-vars/simple.css
205
+ - lib/less/js/test/browser/css/postProcessor/postProcessor.css
194
206
  - lib/less/js/test/browser/css/relative-urls/urls.css
195
207
  - lib/less/js/test/browser/css/rootpath-relative/urls.css
196
208
  - lib/less/js/test/browser/css/rootpath/urls.css
@@ -206,6 +218,7 @@ files:
206
218
  - lib/less/js/test/browser/less/imports/urls2.less
207
219
  - lib/less/js/test/browser/less/modify-vars/imports/simple2.less
208
220
  - lib/less/js/test/browser/less/modify-vars/simple.less
221
+ - lib/less/js/test/browser/less/postProcessor/postProcessor.less
209
222
  - lib/less/js/test/browser/less/relative-urls/urls.less
210
223
  - lib/less/js/test/browser/less/rootpath-relative/urls.less
211
224
  - lib/less/js/test/browser/less/rootpath/urls.less
@@ -226,6 +239,8 @@ files:
226
239
  - lib/less/js/test/browser/runner-modify-vars-spec.js
227
240
  - lib/less/js/test/browser/runner-no-js-errors-options.js
228
241
  - lib/less/js/test/browser/runner-no-js-errors-spec.js
242
+ - lib/less/js/test/browser/runner-postProcessor-options.js
243
+ - lib/less/js/test/browser/runner-postProcessor.js
229
244
  - lib/less/js/test/browser/runner-production-options.js
230
245
  - lib/less/js/test/browser/runner-production-spec.js
231
246
  - lib/less/js/test/browser/runner-relative-urls-options.js
@@ -246,6 +261,7 @@ files:
246
261
  - lib/less/js/test/css/debug/linenumbers-all.css
247
262
  - lib/less/js/test/css/debug/linenumbers-comments.css
248
263
  - lib/less/js/test/css/debug/linenumbers-mediaquery.css
264
+ - lib/less/js/test/css/detached-rulesets.css
249
265
  - lib/less/js/test/css/empty.css
250
266
  - lib/less/js/test/css/extend-chaining.css
251
267
  - lib/less/js/test/css/extend-clearfix.css
@@ -291,6 +307,7 @@ files:
291
307
  - lib/less/js/test/css/strings.css
292
308
  - lib/less/js/test/css/url-args/urls.css
293
309
  - lib/less/js/test/css/urls.css
310
+ - lib/less/js/test/css/variables-in-at-rules.css
294
311
  - lib/less/js/test/css/variables.css
295
312
  - lib/less/js/test/css/whitespace.css
296
313
  - lib/less/js/test/data/data-uri-fail.png
@@ -308,11 +325,14 @@ files:
308
325
  - lib/less/js/test/less/css.less
309
326
  - lib/less/js/test/less/debug/import/test.less
310
327
  - lib/less/js/test/less/debug/linenumbers.less
328
+ - lib/less/js/test/less/detached-rulesets.less
311
329
  - lib/less/js/test/less/empty.less
312
330
  - lib/less/js/test/less/errors/add-mixed-units.less
313
331
  - lib/less/js/test/less/errors/add-mixed-units.txt
314
332
  - lib/less/js/test/less/errors/add-mixed-units2.less
315
333
  - lib/less/js/test/less/errors/add-mixed-units2.txt
334
+ - lib/less/js/test/less/errors/at-rules-undefined-var.less
335
+ - lib/less/js/test/less/errors/at-rules-undefined-var.txt
316
336
  - lib/less/js/test/less/errors/bad-variable-declaration1.less
317
337
  - lib/less/js/test/less/errors/bad-variable-declaration1.txt
318
338
  - lib/less/js/test/less/errors/color-func-invalid-color.less
@@ -321,6 +341,18 @@ files:
321
341
  - lib/less/js/test/less/errors/comment-in-selector.txt
322
342
  - lib/less/js/test/less/errors/css-guard-default-func.less
323
343
  - lib/less/js/test/less/errors/css-guard-default-func.txt
344
+ - lib/less/js/test/less/errors/detached-ruleset-1.less
345
+ - lib/less/js/test/less/errors/detached-ruleset-1.txt
346
+ - lib/less/js/test/less/errors/detached-ruleset-2.less
347
+ - lib/less/js/test/less/errors/detached-ruleset-2.txt
348
+ - lib/less/js/test/less/errors/detached-ruleset-3.less
349
+ - lib/less/js/test/less/errors/detached-ruleset-3.txt
350
+ - lib/less/js/test/less/errors/detached-ruleset-4.less
351
+ - lib/less/js/test/less/errors/detached-ruleset-4.txt
352
+ - lib/less/js/test/less/errors/detached-ruleset-5.less
353
+ - lib/less/js/test/less/errors/detached-ruleset-5.txt
354
+ - lib/less/js/test/less/errors/detached-ruleset-6.less
355
+ - lib/less/js/test/less/errors/detached-ruleset-6.txt
324
356
  - lib/less/js/test/less/errors/divide-mixed-units.less
325
357
  - lib/less/js/test/less/errors/divide-mixed-units.txt
326
358
  - lib/less/js/test/less/errors/extend-no-selector.less
@@ -354,6 +386,8 @@ files:
354
386
  - lib/less/js/test/less/errors/mixin-not-matched.txt
355
387
  - lib/less/js/test/less/errors/mixin-not-matched2.less
356
388
  - lib/less/js/test/less/errors/mixin-not-matched2.txt
389
+ - lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.less
390
+ - lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.txt
357
391
  - lib/less/js/test/less/errors/mixins-guards-default-func-1.less
358
392
  - lib/less/js/test/less/errors/mixins-guards-default-func-1.txt
359
393
  - lib/less/js/test/less/errors/mixins-guards-default-func-2.less
@@ -382,6 +416,8 @@ files:
382
416
  - lib/less/js/test/less/errors/parse-error-missing-parens.txt
383
417
  - lib/less/js/test/less/errors/parse-error-with-import.less
384
418
  - lib/less/js/test/less/errors/parse-error-with-import.txt
419
+ - lib/less/js/test/less/errors/percentage-missing-space.less
420
+ - lib/less/js/test/less/errors/percentage-missing-space.txt
385
421
  - lib/less/js/test/less/errors/property-asterisk-only-name.less
386
422
  - lib/less/js/test/less/errors/property-asterisk-only-name.txt
387
423
  - lib/less/js/test/less/errors/property-ie5-hack.less
@@ -473,6 +509,7 @@ files:
473
509
  - lib/less/js/test/less/strings.less
474
510
  - lib/less/js/test/less/url-args/urls.less
475
511
  - lib/less/js/test/less/urls.less
512
+ - lib/less/js/test/less/variables-in-at-rules.less
476
513
  - lib/less/js/test/less/variables.less
477
514
  - lib/less/js/test/less/whitespace.less
478
515
  - lib/less/js/test/rhino/test-header.js