diff options
author | Haijian Wang <haijian@vaadin.com> | 2013-02-19 11:17:51 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-02-19 10:16:38 +0000 |
commit | 821ebf49d898ba5f0e2f2e386de242b3dbcbe2e1 (patch) | |
tree | 370ee54321db44c581f30401835305534f4845b7 /theme-compiler/tests/resources | |
parent | 638bb9263d867f300123acc9023f27ee242e6079 (diff) | |
download | vaadin-framework-821ebf49d898ba5f0e2f2e386de242b3dbcbe2e1.tar.gz vaadin-framework-821ebf49d898ba5f0e2f2e386de242b3dbcbe2e1.zip |
more than expected params in mixin throws IOB exception. (Ticket #10988)
Change-Id: I6451c94a4f733b002165983f92c8577dac4904f6
Diffstat (limited to 'theme-compiler/tests/resources')
-rw-r--r-- | theme-compiler/tests/resources/scss/mixin-extra-params.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/scss/mixin-extra-params.scss b/theme-compiler/tests/resources/scss/mixin-extra-params.scss new file mode 100644 index 0000000000..af376adf90 --- /dev/null +++ b/theme-compiler/tests/resources/scss/mixin-extra-params.scss @@ -0,0 +1,4 @@ +@mixin test ($p1) { + color: $p1; +} +@include test(foo, bar);
\ No newline at end of file |