aboutsummaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
Diffstat (limited to 'src/com')
-rw-r--r--src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java b/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java
new file mode 100644
index 0000000000..e083e31dae
--- /dev/null
+++ b/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.java
@@ -0,0 +1,37 @@
+package com.vaadin.tests.components.checkbox;
+import com.vaadin.tests.components.TestBase;
+import com.vaadin.ui.CheckBox;
+import com.vaadin.ui.Label;
+import com.vaadin.ui.VerticalLayout;
+
+public class CheckboxCaptionWrapping extends TestBase {
+
+ @Override
+ protected String getDescription() {
+ return "The checkbox caption consists of 10 words which should all be shown. There should be no extra white space between the checkbox caption and the label below it.";
+ }
+
+ @Override
+ protected Integer getTicketNumber() {
+ return 3263;
+ }
+
+ @Override
+ protected void setup() {
+ setTheme("tests-tickets");
+ VerticalLayout mainLayout = new VerticalLayout();
+ CheckBox cb = new CheckBox(
+ "Checkbox with some Incididunt ut labore et dolore magna aliqua.");
+ cb.setStyleName("wrap");
+ mainLayout.setStyleName("borders");
+ mainLayout.setWidth("300px");
+ mainLayout.addComponent(cb);
+ mainLayout.addComponent(new Label(
+ "Lorem ipsum dolor sit amet, consectetur adipisicing"
+ + " elit, sed do eiusmod tempor."));
+
+ addComponent(mainLayout);
+
+ }
+
+}