From f01d482aeb39078ed54c30530384618c4a51feb5 Mon Sep 17 00:00:00 2001 From: Joonas Lehtinen Date: Thu, 3 Jul 2008 16:34:32 +0000 Subject: [PATCH] Added couple of more fields to #1710 test svn changeset:5043/svn branch:trunk --- src/com/itmill/toolkit/tests/tickets/Ticket1710.java | 11 +++++++++++ 1 file changed, 11 insertions(+) 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")); -- 2.39.5