diff options
author | Haijian Wang <haijian@vaadin.com> | 2013-02-12 11:54:10 +0200 |
---|---|---|
committer | Haijian Wang <haijian@vaadin.com> | 2013-02-12 11:54:10 +0200 |
commit | 28cb23f111782a2335a9eec47f93633e064d068d (patch) | |
tree | c707fd0c87a2eea887f81ff7dcf864e93553da41 /theme-compiler/tests | |
parent | 03e620287b910e6f3f0d03c369f2eaa9a6d15346 (diff) | |
download | vaadin-framework-28cb23f111782a2335a9eec47f93633e064d068d.tar.gz vaadin-framework-28cb23f111782a2335a9eec47f93633e064d068d.zip |
Referencing multiple params in multiple lines inside mixin (Ticket
#10987)
Change-Id: I3d97849afac763a9774cee254778e068f94a23e0
Diffstat (limited to 'theme-compiler/tests')
-rw-r--r-- | theme-compiler/tests/resources/automatic/css/mixin-multiple-params.css | 4 | ||||
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/mixin-multiple-params.scss | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/css/mixin-multiple-params.css b/theme-compiler/tests/resources/automatic/css/mixin-multiple-params.css new file mode 100644 index 0000000000..affb47896f --- /dev/null +++ b/theme-compiler/tests/resources/automatic/css/mixin-multiple-params.css @@ -0,0 +1,4 @@ +-webkit-test: foo bar; +-moz-test: foo bar; +-webkit-test: foo bar zoo; +-moz-test: foo bar zoo;
\ No newline at end of file diff --git a/theme-compiler/tests/resources/automatic/scss/mixin-multiple-params.scss b/theme-compiler/tests/resources/automatic/scss/mixin-multiple-params.scss new file mode 100644 index 0000000000..2695ef9860 --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/mixin-multiple-params.scss @@ -0,0 +1,10 @@ +@mixin test2 ($p1, $p2) { + -webkit-test: $p1 $p2; + -moz-test: $p1 $p2; +} +@mixin test3 ($p1, $p2, $p3) { + -webkit-test: $p1 $p2 $p3; + -moz-test: $p1 $p2 $p3; +} +@include test2(foo, bar); +@include test3(foo, bar, zoo);
\ No newline at end of file |