aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/sasslang
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2013-04-18 10:36:31 +0300
committerVaadin Code Review <review@vaadin.com>2013-04-18 17:54:58 +0000
commit0a2b6b5127f97bededd4b84926d656b9dd4a3032 (patch)
tree54ed232c9dc9679c2ab6f43c0e57d6d26b93e932 /theme-compiler/tests/resources/sasslang
parent4f9df1f6f0926cfce846a43c557e9b69302a4ca3 (diff)
downloadvaadin-framework-0a2b6b5127f97bededd4b84926d656b9dd4a3032.tar.gz
vaadin-framework-0a2b6b5127f97bededd4b84926d656b9dd4a3032.zip
Support "to" in CSS function parameters (#11309)
This change also relaxes whitespace checking in SCSS tests slightly. Change-Id: I2ad5087e7d77ddd0473df47d202c6dd3e228181f
Diffstat (limited to 'theme-compiler/tests/resources/sasslang')
-rw-r--r--theme-compiler/tests/resources/sasslang/css/385-test_newlines_removed_from_selectors_when_compressed.css4
-rw-r--r--theme-compiler/tests/resources/sasslang/scss/385-test_newlines_removed_from_selectors_when_compressed.scss6
2 files changed, 10 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/sasslang/css/385-test_newlines_removed_from_selectors_when_compressed.css b/theme-compiler/tests/resources/sasslang/css/385-test_newlines_removed_from_selectors_when_compressed.css
new file mode 100644
index 0000000000..5032ec877d
--- /dev/null
+++ b/theme-compiler/tests/resources/sasslang/css/385-test_newlines_removed_from_selectors_when_compressed.css
@@ -0,0 +1,4 @@
+z a
+, z b {
+ display: block;
+}
diff --git a/theme-compiler/tests/resources/sasslang/scss/385-test_newlines_removed_from_selectors_when_compressed.scss b/theme-compiler/tests/resources/sasslang/scss/385-test_newlines_removed_from_selectors_when_compressed.scss
new file mode 100644
index 0000000000..c04a1ee63a
--- /dev/null
+++ b/theme-compiler/tests/resources/sasslang/scss/385-test_newlines_removed_from_selectors_when_compressed.scss
@@ -0,0 +1,6 @@
+a
+, b {
+ z & {
+ display: block;
+ }
+}