Skip to content

Commit c87b34f

Browse files
committed
Add a spec for saturate() in a plain CSS file
See sass/dart-sass#840
1 parent b810d3a commit c87b34f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

spec/css/plain/functions.hrx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,16 @@ a {b: alpha(0.1)}
108108
a {
109109
b: alpha(0.1);
110110
}
111+
112+
<===>
113+
================================================================================
114+
<===> saturate/input.scss
115+
@import "plain";
116+
117+
<===> saturate/plain.css
118+
a {b: saturate(0.1)}
119+
120+
<===> saturate/output.css
121+
a {
122+
b: saturate(0.1);
123+
}

0 commit comments

Comments
 (0)