From 25fc2f2f1af0b6bf52053f0ca6d11d31c5e7453a Mon Sep 17 00:00:00 2001 From: Mika Murtojarvi Date: Mon, 14 Oct 2013 15:16:40 +0300 Subject: Fix whitespace after including a mixin (#12715) Change-Id: I9b25968cc140a9443820a26eadb6b5a1507ad7ec --- .../tests/resources/automatic/css/mixin-content-parameters.css | 2 ++ .../tests/resources/automatic/scss/mixin-content-parameters.scss | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 theme-compiler/tests/resources/automatic/css/mixin-content-parameters.css create mode 100644 theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss (limited to 'theme-compiler/tests') 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 -- cgit v1.2.3