aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/contains-in-if.scss
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/contains-in-if.scss')
-rw-r--r--theme-compiler/tests/resources/automatic/scss/contains-in-if.scss18
1 files changed, 18 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/contains-in-if.scss b/theme-compiler/tests/resources/automatic/scss/contains-in-if.scss
new file mode 100644
index 0000000000..4bb7e7a6ae
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/scss/contains-in-if.scss
@@ -0,0 +1,18 @@
+@if (contains(a b c, b)) {
+ .yes {
+ color: green;
+ }
+} @else {
+ .no {
+ color: red;
+ }
+}
+@if (contains(a b c, d)) {
+ .yes {
+ color: green;
+ }
+} @else {
+ .no {
+ color: red;
+ }
+} \ No newline at end of file