File tree Expand file tree Collapse file tree 4 files changed +59
-51
lines changed Expand file tree Collapse file tree 4 files changed +59
-51
lines changed Original file line number Diff line number Diff line change
1
+ <===> attribute/dash_dash/input.scss
2
+ // Attribute selector values are allowed to be unquoted as long as they're plain
3
+ // CSS identifiers. However, IE 11 doesn't recognize custom-property-style
4
+ // identifiers like `--foo` as identifiers, so they should always be quoted.
5
+
6
+ [class="--foo"], [class*="--foo"] {
7
+ x: y;
8
+ }
9
+
10
+ <===> attribute/dash_dash/output.css
11
+ [class="--foo"], [class*="--foo"] {
12
+ x: y;
13
+ }
14
+
15
+ <===>
16
+ ================================================================================
17
+ <===> reference_combinator/options.yml
18
+ ---
19
+ :todo:
20
+ - libsass
21
+
22
+ <===> reference_combinator/input.scss
23
+ // Reference combinators used to be supported by Sass when they were part of the
24
+ // CSS spec, but they're no longer supported and should now produce errors.
25
+ .foo /bar/ .baz {
26
+ a: b;
27
+ }
28
+
29
+ <===> reference_combinator/error
30
+ Error: expected selector.
31
+ ,
32
+ 3 | .foo /bar/ .baz{
33
+ | ^
34
+ '
35
+ input.scss 3:6 root stylesheet
36
+
37
+ <===>
38
+ ================================================================================
39
+ <===> slotted/input.scss
40
+ ::slotted(.a) {x: y}
41
+
42
+ ::slotted(.c.d) {x: y}
43
+ .e {@extend .c}
44
+
45
+ ::slotted(.f) {x: y}
46
+ ::slotted(.g) {@extend .f}
47
+
48
+ <===> slotted/output.css
49
+ ::slotted(.a) {
50
+ x: y;
51
+ }
52
+
53
+ ::slotted(.c.d, .d.e) {
54
+ x: y;
55
+ }
56
+
57
+ ::slotted(.f, ::slotted(.g)) {
58
+ x: y;
59
+ }
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments