From: Joonas Lehtinen Date: Thu, 3 Jul 2008 16:34:32 +0000 (+0000) Subject: Added couple of more fields to #1710 test X-Git-Tag: 6.7.0.beta1~4480 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f01d482aeb39078ed54c30530384618c4a51feb5;p=vaadin-framework.git Added couple of more fields to #1710 test svn changeset:5043/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/tests/tickets/Ticket1710.java b/src/com/itmill/toolkit/tests/tickets/Ticket1710.java index f9e692f771..afefa5f779 100644 --- a/src/com/itmill/toolkit/tests/tickets/Ticket1710.java +++ b/src/com/itmill/toolkit/tests/tickets/Ticket1710.java @@ -148,6 +148,17 @@ public class Ticket1710 extends com.itmill.toolkit.Application { t3.setComponentError(new SystemError("Error")); lo.addComponent(t3); + lo.addComponent(new TextField("Textfield with no error in it")); + + TextField tt1 = new TextField("100% wide Textfield with no error in it"); + tt1.setWidth("100%"); + lo.addComponent(tt1); + + TextField tt2 = new TextField(); + tt2.setWidth("100%"); + tt2.setValue("100% wide Textfield with no error in it and no caption"); + lo.addComponent(tt2); + TextField t4 = new TextField(); t4.setValue("Without caption, With required"); t4.setComponentError(new SystemError("Error"));