diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/mixin-multiple-params.scss')
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/mixin-multiple-params.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/mixin-multiple-params.scss b/theme-compiler/tests/resources/automatic/scss/mixin-multiple-params.scss new file mode 100644 index 0000000000..2695ef9860 --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/mixin-multiple-params.scss @@ -0,0 +1,10 @@ +@mixin test2 ($p1, $p2) { + -webkit-test: $p1 $p2; + -moz-test: $p1 $p2; +} +@mixin test3 ($p1, $p2, $p3) { + -webkit-test: $p1 $p2 $p3; + -moz-test: $p1 $p2 $p3; +} +@include test2(foo, bar); +@include test3(foo, bar, zoo);
\ No newline at end of file |