diff options
Diffstat (limited to 'theme-compiler/tests/resources/sasslang/scss/311-update_stylesheet.scss')
-rw-r--r-- | theme-compiler/tests/resources/sasslang/scss/311-update_stylesheet.scss | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/sasslang/scss/311-update_stylesheet.scss b/theme-compiler/tests/resources/sasslang/scss/311-update_stylesheet.scss new file mode 100644 index 0000000000..e43d50813b --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/scss/311-update_stylesheet.scss @@ -0,0 +1,18 @@ +@import "filename_fn_import"; + +@mixin local-mixin { + local-mixin: filename(); +} + +@function local-function() { + @return filename(); +} + +filename { + local: filename(); + @include local-mixin; + local-function: local-function(); + + @include imported-mixin; + imported-function: imported-function(); +} |