]> source.dussan.org Git - vaadin-framework.git/commitdiff
Added couple of more fields to #1710 test
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>
Thu, 3 Jul 2008 16:34:32 +0000 (16:34 +0000)
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>
Thu, 3 Jul 2008 16:34:32 +0000 (16:34 +0000)
svn changeset:5043/svn branch:trunk

src/com/itmill/toolkit/tests/tickets/Ticket1710.java

index f9e692f77108020bc79e9dad4e9d49574a502d17..afefa5f779200070784ded4af822667e6fbb9eed 100644 (file)
@@ -148,6 +148,17 @@ public class Ticket1710 extends com.itmill.toolkit.Application {
         t3.setComponentError(new SystemError("Error"));\r
         lo.addComponent(t3);\r
 \r
+        lo.addComponent(new TextField("Textfield with no error in it"));\r
+\r
+        TextField tt1 = new TextField("100% wide Textfield with no error in it");\r
+        tt1.setWidth("100%");\r
+        lo.addComponent(tt1);\r
+\r
+        TextField tt2 = new TextField();\r
+        tt2.setWidth("100%");\r
+        tt2.setValue("100% wide Textfield with no error in it and no caption");\r
+        lo.addComponent(tt2);\r
+\r
         TextField t4 = new TextField();\r
         t4.setValue("Without caption, With required");\r
         t4.setComponentError(new SystemError("Error"));\r