@less/test-data 4.8.1 → 5.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/UPSTREAM-FIXTURE-SYNC.md +54 -0
- package/package.json +4 -1
- package/styles.config.ts +15 -0
- package/tests-config/3rd-party/styles.config.cjs +1 -1
- package/tests-config/compression/styles.config.cjs +1 -1
- package/tests-config/debug/all/styles.config.cjs +1 -1
- package/tests-config/debug/comments/styles.config.cjs +1 -1
- package/tests-config/debug/mediaquery/styles.config.cjs +1 -1
- package/tests-config/filemanagerPlugin/styles.config.cjs +1 -1
- package/tests-config/functions-harness/functions-harness.css +8 -0
- package/tests-config/functions-harness/functions-harness.less +10 -0
- package/tests-config/namespacing/legacy/namespacing-7.css +15 -0
- package/tests-config/namespacing/namespacing-5.less +3 -3
- package/tests-config/namespacing/namespacing-7.css +16 -8
- package/tests-config/namespacing/styles.config.cjs +4 -1
- package/tests-config/strict-imports/legacy/strict-imports.css +14 -0
- package/tests-config/strict-imports/strict-imports.css +4 -2
- package/tests-config/strict-imports/styles.config.cjs +6 -5
- package/tests-error/eval/ampersand-merge-template-invalid.less +7 -0
- package/tests-error/eval/ampersand-merge-template-invalid.txt +1 -0
- package/tests-error/eval/at-rules-undefined-var.less +1 -1
- package/tests-unit/at-rule-variable-interpolation/at-rule-variable-interpolation.css +45 -0
- package/tests-unit/at-rule-variable-interpolation/at-rule-variable-interpolation.less +72 -0
- package/tests-unit/at-rules/at-rules.css +8 -6
- package/tests-unit/at-rules/legacy/at-rules.css +110 -0
- package/tests-unit/at-rules/styles.config.ts +5 -0
- package/tests-unit/at-rules-bubbling/at-rules-bubbling.css +121 -0
- package/tests-unit/at-rules-bubbling/legacy/at-rules-bubbling.css +122 -0
- package/tests-unit/at-rules-keyword-comments/at-rules-keyword-comments.css +2 -5
- package/tests-unit/at-rules-keyword-comments/legacy/at-rules-keyword-comments.css +12 -0
- package/tests-unit/at-rules-targeted/at-rules-targeted.css +5 -3
- package/tests-unit/at-rules-targeted/legacy/at-rules-targeted.css +55 -0
- package/tests-unit/calc/calc.css +8 -8
- package/tests-unit/calc/calc.less +1 -0
- package/tests-unit/calc/legacy/calc.css +32 -0
- package/tests-unit/color-functions/basic.css +1 -1
- package/tests-unit/color-functions/comprehensive.css +5 -5
- package/tests-unit/color-functions/comprehensive.less +1 -0
- package/tests-unit/color-functions/formats.css +0 -12
- package/tests-unit/color-functions/formats.less +0 -15
- package/tests-unit/color-functions/legacy/basic.css +21 -0
- package/tests-unit/color-functions/legacy/comprehensive.css +48 -0
- package/tests-unit/color-functions/legacy/modern-syntax.css +9 -0
- package/tests-unit/color-functions/legacy/operations.css +18 -0
- package/tests-unit/color-functions/legacy/rgba.css +20 -0
- package/tests-unit/color-functions/modern-syntax.css +4 -4
- package/tests-unit/color-functions/modern-syntax.less +1 -0
- package/tests-unit/color-functions/operations.less +1 -0
- package/tests-unit/color-functions/rgba.css +3 -3
- package/tests-unit/color-functions/rgba.less +3 -1
- package/tests-unit/comments/comments.css +5 -6
- package/tests-unit/comments/comments.less +2 -1
- package/tests-unit/comments/comments2.css +4 -6
- package/tests-unit/comments/comments2.less +3 -0
- package/tests-unit/comments/legacy/comments.css +86 -0
- package/tests-unit/comments/legacy/comments2.css +21 -0
- package/tests-unit/container/container.css +40 -83
- package/tests-unit/container/container.less +28 -82
- package/tests-unit/container/legacy/container.css +273 -0
- package/tests-unit/container/styles.config.ts +8 -0
- package/tests-unit/css-3/css-3.css +4 -4
- package/tests-unit/css-3/legacy/css-3.css +147 -0
- package/tests-unit/css-escapes/css-escapes.css +4 -4
- package/tests-unit/css-escapes/legacy/css-escapes.css +34 -0
- package/tests-unit/css-escapes/styles.config.ts +5 -0
- package/tests-unit/css-grid/css-grid.css +4 -1
- package/tests-unit/css-grid/legacy/css-grid.css +27 -0
- package/tests-unit/css-guards/css-guards.less +2 -1
- package/tests-unit/detached-rulesets/detached-rulesets.css +26 -18
- package/tests-unit/detached-rulesets/legacy/detached-rulesets.css +79 -0
- package/tests-unit/directives-bubbling/directives-bubbling.css +16 -14
- package/tests-unit/extend/extend.css +22 -28
- package/tests-unit/extend/legacy/extend.css +79 -0
- package/tests-unit/extend/styles.config.ts +5 -0
- package/tests-unit/extend-chaining/extend-chaining.css +7 -10
- package/tests-unit/extend-chaining/legacy/extend-chaining.css +84 -0
- package/tests-unit/extend-clearfix/extend-clearfix.css +1 -3
- package/tests-unit/extend-clearfix/extend-clearfix.less +0 -1
- package/tests-unit/{extend → extend-clearfix/legacy}/extend-clearfix.css +3 -0
- package/tests-unit/extend-exact/extend-exact.css +25 -24
- package/tests-unit/extend-exact/legacy/extend-exact.css +40 -0
- package/tests-unit/extend-exact/styles.config.ts +5 -0
- package/tests-unit/extend-media/extend-media.css +9 -14
- package/tests-unit/extend-media/legacy/extend-media.css +27 -0
- package/tests-unit/extend-media/styles.config.ts +5 -0
- package/tests-unit/extend-nest/extend-nest.css +3 -22
- package/tests-unit/extend-nest/legacy/extend-nest.css +60 -0
- package/tests-unit/extend-selector/extend-selector.css +42 -67
- package/tests-unit/extend-selector/extend-selector.less +0 -15
- package/tests-unit/extend-selector/legacy/extend-selector.css +73 -0
- package/tests-unit/extend-selector/styles.config.ts +5 -0
- package/tests-unit/extract-and-length/extract-and-length.css +6 -5
- package/tests-unit/extract-and-length/extract-and-length.less +7 -2
- package/tests-unit/extract-and-length/legacy/extract-and-length.css +137 -0
- package/tests-unit/functions/functions.css +5 -14
- package/tests-unit/functions/functions.less +7 -17
- package/tests-unit/functions/legacy/functions.css +244 -0
- package/tests-unit/functions/legacy/functions.less +296 -0
- package/tests-unit/functions-each/functions-each.css +4 -2
- package/tests-unit/import/import-reference-issues.css +6 -6
- package/tests-unit/import/import-reference.css +4 -2
- package/tests-unit/import/legacy/import-reference-issues.css +27 -0
- package/tests-unit/import/legacy/import-reference.css +101 -0
- package/tests-unit/import/styles.config.cjs +5 -4
- package/tests-unit/layer/layer.css +30 -28
- package/tests-unit/layer/legacy/layer.css +136 -0
- package/tests-unit/layer/styles.config.ts +5 -0
- package/tests-unit/math-css-vars/math-css-vars.css +1 -0
- package/tests-unit/math-css-vars/math-css-vars.less +1 -0
- package/tests-unit/media/legacy/media.css +274 -0
- package/tests-unit/media/media.css +49 -43
- package/tests-unit/media/media.less +0 -2
- package/tests-unit/media/styles.config.cjs +5 -0
- package/tests-unit/merge/merge.css +2 -2
- package/tests-unit/mixin-noparens/legacy/mixin-noparens.css +10 -0
- package/tests-unit/mixin-noparens/mixin-noparens.css +4 -2
- package/tests-unit/mixin-noparens/styles.config.ts +5 -0
- package/tests-unit/mixins/legacy/maps.css +9 -0
- package/tests-unit/mixins/legacy/mixins.css +147 -0
- package/tests-unit/mixins/maps.css +7 -5
- package/tests-unit/mixins/mixins.css +7 -5
- package/tests-unit/mixins/styles.config.ts +5 -0
- package/tests-unit/mixins-closure/legacy/mixins-closure.css +12 -0
- package/tests-unit/mixins-closure/mixins-closure.css +4 -2
- package/tests-unit/mixins-closure/styles.config.ts +5 -0
- package/tests-unit/mixins-guards/legacy/mixins-guards.css +214 -0
- package/tests-unit/mixins-guards/mixins-guards.css +5 -3
- package/tests-unit/mixins-guards/mixins-guards.less +0 -1
- package/tests-unit/mixins-guards/styles.config.ts +5 -0
- package/tests-unit/mixins-guards-default-func/legacy/mixins-guards-default-func.css +132 -0
- package/tests-unit/mixins-guards-default-func/mixins-guards-default-func.css +0 -2
- package/tests-unit/mixins-important/mixins-important.css +33 -19
- package/tests-unit/mixins-interpolated/legacy/mixins-interpolated.css +42 -0
- package/tests-unit/mixins-interpolated/mixins-interpolated.css +24 -14
- package/tests-unit/mixins-interpolated/styles.config.ts +5 -0
- package/tests-unit/mixins-nested/legacy/mixins-nested.css +17 -0
- package/tests-unit/mixins-nested/mixins-nested.css +16 -12
- package/tests-unit/mixins-nested/styles.config.ts +5 -0
- package/tests-unit/nesting/legacy/nesting.css +27 -0
- package/tests-unit/nesting/nesting-uncollapsed.css +26 -0
- package/tests-unit/nesting/nesting.css +1 -1
- package/tests-unit/nesting/styles.config.ts +6 -0
- package/tests-unit/operations/operations.css +4 -2
- package/tests-unit/parse-interpolation/legacy/parse-interpolation.css +39 -0
- package/tests-unit/parse-interpolation/parse-interpolation.css +72 -35
- package/tests-unit/parse-interpolation/parse-interpolation.less +73 -25
- package/tests-unit/parse-interpolation/styles.config.ts +5 -0
- package/tests-unit/parser-property-interp/parser-property-interp.css +1 -1
- package/tests-unit/parser-property-interp/parser-property-interp.less +2 -2
- package/tests-unit/parser-slashed-combinator/parser-slashed-combinator.css +1 -9
- package/tests-unit/parser-slashed-combinator/parser-slashed-combinator.less +11 -11
- package/tests-unit/plugin/styles.config.ts +11 -0
- package/tests-unit/property-accessors/legacy/property-accessors.css +60 -0
- package/tests-unit/property-accessors/property-accessors.css +15 -7
- package/tests-unit/property-name-interp/legacy/property-name-interp.css +24 -0
- package/tests-unit/property-name-interp/property-name-interp.css +1 -1
- package/tests-unit/property-name-interp/property-name-interp.less +4 -2
- package/tests-unit/property-targeted/legacy/property-targeted.css +7 -0
- package/tests-unit/property-targeted/property-targeted.css +1 -1
- package/tests-unit/rulesets/legacy/rulesets.css +31 -0
- package/tests-unit/rulesets/rulesets.css +30 -30
- package/tests-unit/rulesets/styles.config.ts +5 -0
- package/tests-unit/scope/legacy/scope.css +41 -0
- package/tests-unit/scope/scope.css +1 -1
- package/tests-unit/selectors/selectors.css +13 -41
- package/tests-unit/styles.config.cjs +1 -1
- package/tests-unit/styles.config.ts +8 -0
- package/tests-unit/variables/legacy/variable-advanced.css +58 -0
- package/tests-unit/variables/variable-advanced.css +1 -4
- package/tests-unit/variables/variable-advanced.less +5 -4
- package/tests-unit/variables-in-at-rules/variables-in-at-rules.less +3 -2
- package/tests-unit/whitespace/legacy/whitespace.css +45 -0
- package/tests-unit/whitespace/whitespace.css +3 -2
- package/tests-warnings/parentless-ampersand-nested.less +6 -0
- package/tests-warnings/parentless-ampersand-nested.txt +42 -0
- package/tests-warnings/parentless-ampersand.less +3 -0
- package/tests-warnings/parentless-ampersand.txt +21 -0
- package/tests-unit/extend/extend-clearfix.less +0 -19
- /package/tests-unit/{directives-bubbling/directives-bubbling.less → at-rules-bubbling/at-rules-bubbling.less} +0 -0
- /package/tests-unit/{ie-filters → ie-filters-REMOVED/legacy}/ie-filters.css +0 -0
- /package/tests-unit/{ie-filters → ie-filters-REMOVED/legacy}/ie-filters.less +0 -0
- /package/tests-unit/{javascript → javascript-REMOVED/legacy}/javascript.css +0 -0
- /package/tests-unit/{javascript → javascript-REMOVED/legacy}/javascript.less +0 -0
- /package/tests-unit/{javascript → javascript-REMOVED/legacy}/styles.config.cjs +0 -0
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
@supports (property: value) {
|
|
37
37
|
@media (max-size: 2px) {
|
|
38
38
|
@supports (whatever: something) {
|
|
39
|
-
.outOfMedia
|
|
39
|
+
.outOfMedia {
|
|
40
40
|
property: value;
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
@supports (property: value) {
|
|
46
46
|
@media (max-size: 2px) {
|
|
47
47
|
@supports (whatever: something) {
|
|
48
|
-
.onTop
|
|
48
|
+
.onTop {
|
|
49
49
|
property: value;
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -77,14 +77,16 @@
|
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
|
-
@media print
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
@supports (
|
|
86
|
-
|
|
87
|
-
|
|
80
|
+
@media print {
|
|
81
|
+
@media (max-size: 2px) {
|
|
82
|
+
.in1 {
|
|
83
|
+
stay: here;
|
|
84
|
+
}
|
|
85
|
+
@supports not (-webkit-font-smoothing: subpixel-antialiased) {
|
|
86
|
+
@supports (whatever: something) {
|
|
87
|
+
.in2 .in1 {
|
|
88
|
+
property: value;
|
|
89
|
+
}
|
|
88
90
|
}
|
|
89
91
|
}
|
|
90
92
|
}
|
|
@@ -101,10 +103,6 @@ html {
|
|
|
101
103
|
property: value;
|
|
102
104
|
}
|
|
103
105
|
}
|
|
104
|
-
.onTop {
|
|
105
|
-
animation: "textscale";
|
|
106
|
-
font-family: something;
|
|
107
|
-
}
|
|
108
106
|
@font-face {
|
|
109
107
|
font-family: something;
|
|
110
108
|
src: made-up-url;
|
|
@@ -117,3 +115,7 @@ html {
|
|
|
117
115
|
font-size: 2em;
|
|
118
116
|
}
|
|
119
117
|
}
|
|
118
|
+
.onTop {
|
|
119
|
+
animation: "textscale";
|
|
120
|
+
font-family: something;
|
|
121
|
+
}
|
|
@@ -3,34 +3,22 @@
|
|
|
3
3
|
border: 1px #f00;
|
|
4
4
|
background: #fdd;
|
|
5
5
|
}
|
|
6
|
-
.error.intrusion
|
|
7
|
-
.badError.intrusion {
|
|
6
|
+
:is(.error, .badError).intrusion {
|
|
8
7
|
font-size: 1.3em;
|
|
9
8
|
font-weight: bold;
|
|
10
9
|
}
|
|
11
|
-
.intrusion .error,
|
|
12
|
-
.intrusion .badError {
|
|
10
|
+
.intrusion :is(.error, .badError) {
|
|
13
11
|
display: none;
|
|
14
12
|
}
|
|
15
13
|
.badError {
|
|
16
14
|
border-width: 3px;
|
|
17
15
|
}
|
|
18
|
-
.foo .bar,
|
|
19
|
-
.foo .baz
|
|
20
|
-
.ext1 .ext2 .bar,
|
|
21
|
-
.ext1 .ext2 .baz,
|
|
22
|
-
.ext3 .bar,
|
|
23
|
-
.ext3 .baz,
|
|
24
|
-
.foo .ext3,
|
|
25
|
-
.ext4 .bar,
|
|
26
|
-
.ext4 .baz,
|
|
27
|
-
.foo .ext4 {
|
|
16
|
+
:is(.foo, .ext1 .ext2, .ext3, .ext4) :is(.bar, .ext3, .ext4),
|
|
17
|
+
:is(.foo, .ext1 .ext2, .ext3, .ext4) .baz {
|
|
28
18
|
display: none;
|
|
29
19
|
}
|
|
30
|
-
div.ext5,
|
|
31
|
-
.ext6 > .ext5,
|
|
32
|
-
div.ext7,
|
|
33
|
-
.ext6 > .ext7 {
|
|
20
|
+
div:is(.ext5, .ext7),
|
|
21
|
+
.ext6 > :is(.ext5, .ext7) {
|
|
34
22
|
width: 100px;
|
|
35
23
|
}
|
|
36
24
|
.ext8.ext9,
|
|
@@ -56,21 +44,27 @@ div.ext7,
|
|
|
56
44
|
.fuu {
|
|
57
45
|
result: match-nested-foo;
|
|
58
46
|
}
|
|
59
|
-
.aa
|
|
60
|
-
.cc {
|
|
47
|
+
.aa {
|
|
61
48
|
color: black;
|
|
49
|
+
.dd,
|
|
50
|
+
.ee {
|
|
51
|
+
background: red;
|
|
52
|
+
}
|
|
62
53
|
}
|
|
63
|
-
.
|
|
64
|
-
|
|
65
|
-
background: red;
|
|
54
|
+
.cc {
|
|
55
|
+
color: black;
|
|
66
56
|
}
|
|
67
57
|
.bb,
|
|
68
|
-
.cc,
|
|
69
|
-
.ee,
|
|
70
58
|
.ff {
|
|
71
59
|
background: red;
|
|
60
|
+
.bb,
|
|
61
|
+
.ff {
|
|
62
|
+
color: black;
|
|
63
|
+
}
|
|
72
64
|
}
|
|
73
|
-
.
|
|
74
|
-
|
|
75
|
-
|
|
65
|
+
.cc {
|
|
66
|
+
background: red;
|
|
67
|
+
}
|
|
68
|
+
.ee {
|
|
69
|
+
background: red;
|
|
76
70
|
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/* Less 4.x output, recorded when this fixture graduated to v5.
|
|
2
|
+
Historical record only — no test reads this file. */
|
|
3
|
+
|
|
4
|
+
.error,
|
|
5
|
+
.badError {
|
|
6
|
+
border: 1px #f00;
|
|
7
|
+
background: #fdd;
|
|
8
|
+
}
|
|
9
|
+
.error.intrusion,
|
|
10
|
+
.badError.intrusion {
|
|
11
|
+
font-size: 1.3em;
|
|
12
|
+
font-weight: bold;
|
|
13
|
+
}
|
|
14
|
+
.intrusion .error,
|
|
15
|
+
.intrusion .badError {
|
|
16
|
+
display: none;
|
|
17
|
+
}
|
|
18
|
+
.badError {
|
|
19
|
+
border-width: 3px;
|
|
20
|
+
}
|
|
21
|
+
.foo .bar,
|
|
22
|
+
.foo .baz,
|
|
23
|
+
.ext1 .ext2 .bar,
|
|
24
|
+
.ext1 .ext2 .baz,
|
|
25
|
+
.ext3 .bar,
|
|
26
|
+
.ext3 .baz,
|
|
27
|
+
.foo .ext3,
|
|
28
|
+
.ext4 .bar,
|
|
29
|
+
.ext4 .baz,
|
|
30
|
+
.foo .ext4 {
|
|
31
|
+
display: none;
|
|
32
|
+
}
|
|
33
|
+
div.ext5,
|
|
34
|
+
.ext6 > .ext5,
|
|
35
|
+
div.ext7,
|
|
36
|
+
.ext6 > .ext7 {
|
|
37
|
+
width: 100px;
|
|
38
|
+
}
|
|
39
|
+
.ext8.ext9,
|
|
40
|
+
.fuu {
|
|
41
|
+
result: add-foo;
|
|
42
|
+
}
|
|
43
|
+
.ext8 .ext9,
|
|
44
|
+
.ext8 + .ext9,
|
|
45
|
+
.ext8 > .ext9,
|
|
46
|
+
.buu,
|
|
47
|
+
.zap,
|
|
48
|
+
.zoo {
|
|
49
|
+
result: bar-matched;
|
|
50
|
+
}
|
|
51
|
+
.ext8.nomatch {
|
|
52
|
+
result: none;
|
|
53
|
+
}
|
|
54
|
+
.ext8 .ext9,
|
|
55
|
+
.buu {
|
|
56
|
+
result: match-nested-bar;
|
|
57
|
+
}
|
|
58
|
+
.ext8.ext9,
|
|
59
|
+
.fuu {
|
|
60
|
+
result: match-nested-foo;
|
|
61
|
+
}
|
|
62
|
+
.aa,
|
|
63
|
+
.cc {
|
|
64
|
+
color: black;
|
|
65
|
+
}
|
|
66
|
+
.aa .dd,
|
|
67
|
+
.aa .ee {
|
|
68
|
+
background: red;
|
|
69
|
+
}
|
|
70
|
+
.bb,
|
|
71
|
+
.cc,
|
|
72
|
+
.ee,
|
|
73
|
+
.ff {
|
|
74
|
+
background: red;
|
|
75
|
+
}
|
|
76
|
+
.bb .bb,
|
|
77
|
+
.ff .ff {
|
|
78
|
+
color: black;
|
|
79
|
+
}
|
|
@@ -8,13 +8,10 @@
|
|
|
8
8
|
.d {
|
|
9
9
|
color: black;
|
|
10
10
|
}
|
|
11
|
-
.g.h
|
|
12
|
-
.i.j.h,
|
|
13
|
-
.k.j.h {
|
|
11
|
+
:is(.g, :is(.i, .k).j).h {
|
|
14
12
|
color: black;
|
|
15
13
|
}
|
|
16
|
-
.i.j
|
|
17
|
-
.k.j {
|
|
14
|
+
:is(.i, .k).j {
|
|
18
15
|
color: inherit;
|
|
19
16
|
}
|
|
20
17
|
.l,
|
|
@@ -72,10 +69,10 @@
|
|
|
72
69
|
.mc {
|
|
73
70
|
color: inherit;
|
|
74
71
|
}
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
72
|
+
@media (plasma) {
|
|
73
|
+
.me,
|
|
74
|
+
.mf {
|
|
75
|
+
background: red;
|
|
76
|
+
}
|
|
80
77
|
}
|
|
81
78
|
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/* Less 4.x output, recorded when this fixture graduated to v5.
|
|
2
|
+
Historical record only — no test reads this file. */
|
|
3
|
+
|
|
4
|
+
.a,
|
|
5
|
+
.b,
|
|
6
|
+
.c {
|
|
7
|
+
color: black;
|
|
8
|
+
}
|
|
9
|
+
.f,
|
|
10
|
+
.e,
|
|
11
|
+
.d {
|
|
12
|
+
color: black;
|
|
13
|
+
}
|
|
14
|
+
.g.h,
|
|
15
|
+
.i.j.h,
|
|
16
|
+
.k.j.h {
|
|
17
|
+
color: black;
|
|
18
|
+
}
|
|
19
|
+
.i.j,
|
|
20
|
+
.k.j {
|
|
21
|
+
color: inherit;
|
|
22
|
+
}
|
|
23
|
+
.l,
|
|
24
|
+
.m,
|
|
25
|
+
.n,
|
|
26
|
+
.o,
|
|
27
|
+
.p,
|
|
28
|
+
.q,
|
|
29
|
+
.r,
|
|
30
|
+
.s,
|
|
31
|
+
.t {
|
|
32
|
+
color: black;
|
|
33
|
+
}
|
|
34
|
+
.u,
|
|
35
|
+
.v.u.v {
|
|
36
|
+
color: black;
|
|
37
|
+
}
|
|
38
|
+
.w,
|
|
39
|
+
.v.w.v {
|
|
40
|
+
color: black;
|
|
41
|
+
}
|
|
42
|
+
.x,
|
|
43
|
+
.y,
|
|
44
|
+
.z {
|
|
45
|
+
color: x;
|
|
46
|
+
}
|
|
47
|
+
.y,
|
|
48
|
+
.z,
|
|
49
|
+
.x {
|
|
50
|
+
color: y;
|
|
51
|
+
}
|
|
52
|
+
.z,
|
|
53
|
+
.x,
|
|
54
|
+
.y {
|
|
55
|
+
color: z;
|
|
56
|
+
}
|
|
57
|
+
.va,
|
|
58
|
+
.vb,
|
|
59
|
+
.vc {
|
|
60
|
+
color: black;
|
|
61
|
+
}
|
|
62
|
+
.vb,
|
|
63
|
+
.vc {
|
|
64
|
+
color: inherit;
|
|
65
|
+
}
|
|
66
|
+
@media (tv) {
|
|
67
|
+
.ma,
|
|
68
|
+
.mb,
|
|
69
|
+
.mc {
|
|
70
|
+
color: black;
|
|
71
|
+
}
|
|
72
|
+
.md,
|
|
73
|
+
.ma,
|
|
74
|
+
.mb,
|
|
75
|
+
.mc {
|
|
76
|
+
color: inherit;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
@media (tv) and (plasma) {
|
|
80
|
+
.me,
|
|
81
|
+
.mf {
|
|
82
|
+
background: red;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -1,37 +1,38 @@
|
|
|
1
|
-
.replace.replace .replace,
|
|
2
|
-
.c.replace + .replace .replace,
|
|
3
|
-
.replace.replace .c,
|
|
4
|
-
.c.replace + .replace .c,
|
|
1
|
+
:is(.replace.replace, .c.replace + .replace) :is(.replace, .c),
|
|
5
2
|
.rep_ace {
|
|
6
3
|
prop: copy-paste-replace;
|
|
7
4
|
}
|
|
8
5
|
.a .b .c {
|
|
9
6
|
prop: not_effected;
|
|
10
7
|
}
|
|
11
|
-
.a
|
|
12
|
-
.effected {
|
|
8
|
+
.a {
|
|
13
9
|
prop: is_effected;
|
|
10
|
+
.b {
|
|
11
|
+
prop: not_effected;
|
|
12
|
+
}
|
|
13
|
+
.b.c {
|
|
14
|
+
prop: not_effected;
|
|
15
|
+
}
|
|
14
16
|
}
|
|
15
|
-
.
|
|
16
|
-
prop:
|
|
17
|
-
}
|
|
18
|
-
.a .b.c {
|
|
19
|
-
prop: not_effected;
|
|
17
|
+
.effected {
|
|
18
|
+
prop: is_effected;
|
|
20
19
|
}
|
|
21
|
-
.c
|
|
22
|
-
.a
|
|
23
|
-
.
|
|
24
|
-
.a
|
|
25
|
-
.
|
|
26
|
-
.
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
20
|
+
.c,
|
|
21
|
+
.a {
|
|
22
|
+
.b,
|
|
23
|
+
.a {
|
|
24
|
+
.a,
|
|
25
|
+
.c {
|
|
26
|
+
prop: not_effected;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
.e.e {
|
|
31
|
+
prop: extend-double;
|
|
32
|
+
&:hover {
|
|
33
|
+
hover: not-extended;
|
|
34
|
+
}
|
|
30
35
|
}
|
|
31
|
-
.e.e,
|
|
32
36
|
.dbl {
|
|
33
37
|
prop: extend-double;
|
|
34
38
|
}
|
|
35
|
-
.e.e:hover {
|
|
36
|
-
hover: not-extended;
|
|
37
|
-
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* Less 4.x output, recorded when this fixture graduated to v5.
|
|
2
|
+
Historical record only — no test reads this file. */
|
|
3
|
+
|
|
4
|
+
.replace.replace .replace,
|
|
5
|
+
.c.replace + .replace .replace,
|
|
6
|
+
.replace.replace .c,
|
|
7
|
+
.c.replace + .replace .c,
|
|
8
|
+
.rep_ace {
|
|
9
|
+
prop: copy-paste-replace;
|
|
10
|
+
}
|
|
11
|
+
.a .b .c {
|
|
12
|
+
prop: not_effected;
|
|
13
|
+
}
|
|
14
|
+
.a,
|
|
15
|
+
.effected {
|
|
16
|
+
prop: is_effected;
|
|
17
|
+
}
|
|
18
|
+
.a .b {
|
|
19
|
+
prop: not_effected;
|
|
20
|
+
}
|
|
21
|
+
.a .b.c {
|
|
22
|
+
prop: not_effected;
|
|
23
|
+
}
|
|
24
|
+
.c .b .a,
|
|
25
|
+
.a .b .a,
|
|
26
|
+
.c .a .a,
|
|
27
|
+
.a .a .a,
|
|
28
|
+
.c .b .c,
|
|
29
|
+
.a .b .c,
|
|
30
|
+
.c .a .c,
|
|
31
|
+
.a .a .c {
|
|
32
|
+
prop: not_effected;
|
|
33
|
+
}
|
|
34
|
+
.e.e,
|
|
35
|
+
.dbl {
|
|
36
|
+
prop: extend-double;
|
|
37
|
+
}
|
|
38
|
+
.e.e:hover {
|
|
39
|
+
hover: not-extended;
|
|
40
|
+
}
|
|
@@ -1,24 +1,19 @@
|
|
|
1
|
-
.ext1 .ext2
|
|
2
|
-
.all .ext2 {
|
|
1
|
+
:is(.ext1, .all) .ext2 {
|
|
3
2
|
background: black;
|
|
4
3
|
}
|
|
5
4
|
@media (tv) {
|
|
6
|
-
.ext1 .ext3
|
|
7
|
-
.tv-lowres .ext3,
|
|
8
|
-
.all .ext3 {
|
|
5
|
+
:is(.ext1, .tv-lowres, .all) .ext3 {
|
|
9
6
|
color: inherit;
|
|
10
7
|
}
|
|
11
8
|
.tv-lowres {
|
|
12
9
|
background: blue;
|
|
13
10
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
.tv-hires {
|
|
22
|
-
background: red;
|
|
11
|
+
@media (hires) {
|
|
12
|
+
:is(.ext1, .tv-lowres, .tv-hires, .all) .ext4 {
|
|
13
|
+
color: green;
|
|
14
|
+
}
|
|
15
|
+
.tv-hires {
|
|
16
|
+
background: red;
|
|
17
|
+
}
|
|
23
18
|
}
|
|
24
19
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/* Less 4.x output, recorded when this fixture graduated to v5.
|
|
2
|
+
Historical record only — no test reads this file. */
|
|
3
|
+
|
|
4
|
+
.ext1 .ext2,
|
|
5
|
+
.all .ext2 {
|
|
6
|
+
background: black;
|
|
7
|
+
}
|
|
8
|
+
@media (tv) {
|
|
9
|
+
.ext1 .ext3,
|
|
10
|
+
.tv-lowres .ext3,
|
|
11
|
+
.all .ext3 {
|
|
12
|
+
color: inherit;
|
|
13
|
+
}
|
|
14
|
+
.tv-lowres {
|
|
15
|
+
background: blue;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
@media (tv) and (hires) {
|
|
19
|
+
.ext1 .ext4,
|
|
20
|
+
.tv-hires .ext4,
|
|
21
|
+
.all .ext4 {
|
|
22
|
+
color: green;
|
|
23
|
+
}
|
|
24
|
+
.tv-hires {
|
|
25
|
+
background: red;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -5,10 +5,7 @@
|
|
|
5
5
|
width: 300px;
|
|
6
6
|
background: red;
|
|
7
7
|
}
|
|
8
|
-
.sidebar .box
|
|
9
|
-
.sidebar2 .box,
|
|
10
|
-
.type1 .sidebar3 .box,
|
|
11
|
-
.type2.sidebar4 .box {
|
|
8
|
+
:is(.sidebar, .sidebar2, .type1 .sidebar3, .type2.sidebar4) .box {
|
|
12
9
|
background: #FFF;
|
|
13
10
|
border: 1px solid #000;
|
|
14
11
|
margin: 10px 0;
|
|
@@ -26,8 +23,7 @@
|
|
|
26
23
|
.submit {
|
|
27
24
|
color: black;
|
|
28
25
|
}
|
|
29
|
-
.button:hover
|
|
30
|
-
.submit:hover {
|
|
26
|
+
:is(.button, .submit):hover {
|
|
31
27
|
color: inherit;
|
|
32
28
|
}
|
|
33
29
|
.button2 :hover {
|
|
@@ -37,21 +33,6 @@
|
|
|
37
33
|
notnested: black;
|
|
38
34
|
}
|
|
39
35
|
.amp-test-h,
|
|
40
|
-
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e.amp-test-g
|
|
41
|
-
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
42
|
-
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
43
|
-
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
44
|
-
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
45
|
-
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
46
|
-
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
47
|
-
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
48
|
-
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
49
|
-
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
50
|
-
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
51
|
-
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
52
|
-
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
53
|
-
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
54
|
-
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
55
|
-
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e.amp-test-g {
|
|
36
|
+
.amp-test-f:is(.amp-test-c :is(.amp-test-a, .amp-test-b).amp-test-d:is(.amp-test-a, .amp-test-b).amp-test-e) + :is(.amp-test-c :is(.amp-test-a, .amp-test-b).amp-test-d:is(.amp-test-a, .amp-test-b).amp-test-e).amp-test-g {
|
|
56
37
|
test: extended by masses of selectors;
|
|
57
38
|
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* Less 4.x output, recorded when this fixture graduated to v5.
|
|
2
|
+
Historical record only — no test reads this file. */
|
|
3
|
+
|
|
4
|
+
.sidebar,
|
|
5
|
+
.sidebar2,
|
|
6
|
+
.type1 .sidebar3,
|
|
7
|
+
.type2.sidebar4 {
|
|
8
|
+
width: 300px;
|
|
9
|
+
background: red;
|
|
10
|
+
}
|
|
11
|
+
.sidebar .box,
|
|
12
|
+
.sidebar2 .box,
|
|
13
|
+
.type1 .sidebar3 .box,
|
|
14
|
+
.type2.sidebar4 .box {
|
|
15
|
+
background: #FFF;
|
|
16
|
+
border: 1px solid #000;
|
|
17
|
+
margin: 10px 0;
|
|
18
|
+
}
|
|
19
|
+
.sidebar2 {
|
|
20
|
+
background: blue;
|
|
21
|
+
}
|
|
22
|
+
.type1 .sidebar3 {
|
|
23
|
+
background: green;
|
|
24
|
+
}
|
|
25
|
+
.type2.sidebar4 {
|
|
26
|
+
background: red;
|
|
27
|
+
}
|
|
28
|
+
.button,
|
|
29
|
+
.submit {
|
|
30
|
+
color: black;
|
|
31
|
+
}
|
|
32
|
+
.button:hover,
|
|
33
|
+
.submit:hover {
|
|
34
|
+
color: inherit;
|
|
35
|
+
}
|
|
36
|
+
.button2 :hover {
|
|
37
|
+
nested: white;
|
|
38
|
+
}
|
|
39
|
+
.button2 :hover {
|
|
40
|
+
notnested: black;
|
|
41
|
+
}
|
|
42
|
+
.amp-test-h,
|
|
43
|
+
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
44
|
+
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
45
|
+
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
46
|
+
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
47
|
+
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
48
|
+
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
49
|
+
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
50
|
+
.amp-test-f.amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
51
|
+
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
52
|
+
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
53
|
+
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
54
|
+
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
55
|
+
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
56
|
+
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-a.amp-test-d.amp-test-b.amp-test-e.amp-test-g,
|
|
57
|
+
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-a.amp-test-e.amp-test-g,
|
|
58
|
+
.amp-test-f.amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e + .amp-test-c .amp-test-b.amp-test-d.amp-test-b.amp-test-e.amp-test-g {
|
|
59
|
+
test: extended by masses of selectors;
|
|
60
|
+
}
|