diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-26 17:05:27 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-26 17:05:27 +0000 |
commit | a325ce3dd531a59d87842e304aaeb6ccb81fb6bb (patch) | |
tree | 61d38e9bc185d2d43dae8a8e1c9215898094367c /theme-compiler/tests/resources/sasslang/scss/268-update_stylesheet.scss | |
parent | 4457324ff11dcaf848dd7364b74f8b0b47783e59 (diff) | |
parent | befa3fe32effffc2ef616aca63761c321d8144c5 (diff) | |
download | vaadin-framework-a325ce3dd531a59d87842e304aaeb6ccb81fb6bb.tar.gz vaadin-framework-a325ce3dd531a59d87842e304aaeb6ccb81fb6bb.zip |
Merge "Imported tests from the sass-lang project (#9751)"
Diffstat (limited to 'theme-compiler/tests/resources/sasslang/scss/268-update_stylesheet.scss')
-rw-r--r-- | theme-compiler/tests/resources/sasslang/scss/268-update_stylesheet.scss | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/sasslang/scss/268-update_stylesheet.scss b/theme-compiler/tests/resources/sasslang/scss/268-update_stylesheet.scss new file mode 100644 index 0000000000..e43d50813b --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/scss/268-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(); +} |