summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests
diff options
context:
space:
mode:
authorMika Murtojarvi <mika@vaadin.com>2013-10-14 15:16:40 +0300
committerVaadin Code Review <review@vaadin.com>2013-10-14 12:57:59 +0000
commit25fc2f2f1af0b6bf52053f0ca6d11d31c5e7453a (patch)
treee3353013b35f9e4f728d517379b2fe1a9086810a /theme-compiler/tests
parent14494257917b270b33ecdc521c24b49c5c36c72c (diff)
downloadvaadin-framework-25fc2f2f1af0b6bf52053f0ca6d11d31c5e7453a.tar.gz
vaadin-framework-25fc2f2f1af0b6bf52053f0ca6d11d31c5e7453a.zip
Fix whitespace after including a mixin (#12715)
Change-Id: I9b25968cc140a9443820a26eadb6b5a1507ad7ec
Diffstat (limited to 'theme-compiler/tests')
-rw-r--r--theme-compiler/tests/resources/automatic/css/mixin-content-parameters.css2
-rw-r--r--theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss9
2 files changed, 11 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/css/mixin-content-parameters.css b/theme-compiler/tests/resources/automatic/css/mixin-content-parameters.css
new file mode 100644
index 0000000000..ddae1ed036
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/css/mixin-content-parameters.css
@@ -0,0 +1,2 @@
+foo {
+ lorem: ipsum; } \ No newline at end of file
diff --git a/theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss b/theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss
new file mode 100644
index 0000000000..dc64ddf6f8
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss
@@ -0,0 +1,9 @@
+@mixin test($foo) {
+ #{$foo} {
+ @content;
+ }
+}
+
+@include test("foo") {
+ lorem: ipsum;
+} \ No newline at end of file