diff options
author | Mika Murtojarvi <mika@vaadin.com> | 2013-11-25 16:31:55 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-11-26 13:08:00 +0000 |
commit | a705f8cc3fd5804e828b6647510795dbbb99eaa3 (patch) | |
tree | 930c41e32a909c9a112b075f26e16a0540fe1b5e /theme-compiler/tests/resources/automatic/scss/mixin-empty-paramlist.scss | |
parent | f4fa4e8ec53b0943635edf3f147680c9b9214db8 (diff) | |
download | vaadin-framework-a705f8cc3fd5804e828b6647510795dbbb99eaa3.tar.gz vaadin-framework-a705f8cc3fd5804e828b6647510795dbbb99eaa3.zip |
Mixins now accept an empty argument list in parentheses
(#12992).
Change-Id: If2484e2f289aa7039984df0d9a73ba595117462c
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/mixin-empty-paramlist.scss')
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/mixin-empty-paramlist.scss | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/mixin-empty-paramlist.scss b/theme-compiler/tests/resources/automatic/scss/mixin-empty-paramlist.scss new file mode 100644 index 0000000000..27033ba850 --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/mixin-empty-paramlist.scss @@ -0,0 +1,28 @@ +@mixin emptyarglist1(){ + body{ + color: blue; + } +} + +@mixin emptyarglist2(){ + h1{ + text-align:center; + } +} + +@mixin emptyarglist3{ + p{ + font-style:italic; + } +} + +@mixin emptyarglist4{ + table{ + width: 100%; + } +} + +@include emptyarglist1(); +@include emptyarglist2; +@include emptyarglist3(); +@include emptyarglist4;
\ No newline at end of file |