]> source.dussan.org Git - vaadin-framework.git/commitdiff
#5570 Defined height for SplitPanel as undefined height is not supported
authorArtur Signell <artur.signell@itmill.com>
Fri, 20 May 2011 12:38:34 +0000 (12:38 +0000)
committerArtur Signell <artur.signell@itmill.com>
Fri, 20 May 2011 12:38:34 +0000 (12:38 +0000)
svn changeset:18975/svn branch:6.6

tests/src/com/vaadin/tests/components/accordion/AccordionInactiveTabSize.java

index 48212b2fdcd60cbb3f147038db05c39de71c18e9..387ec7857f5ebc7e62d1704755377aa8678a314f 100644 (file)
@@ -21,7 +21,8 @@ public class AccordionInactiveTabSize extends TestBase {
     @Override
     protected void setup() {
         HorizontalSplitPanel sp = new HorizontalSplitPanel();
-        sp.setSizeFull();
+        sp.setWidth("100%");
+        sp.setHeight("70px");
 
         Accordion acc = new Accordion();