summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/TestForWindowing.java
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/src/com/vaadin/tests/TestForWindowing.java')
-rw-r--r--uitest/src/com/vaadin/tests/TestForWindowing.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/uitest/src/com/vaadin/tests/TestForWindowing.java b/uitest/src/com/vaadin/tests/TestForWindowing.java
index 2818862def..2175aa63ba 100644
--- a/uitest/src/com/vaadin/tests/TestForWindowing.java
+++ b/uitest/src/com/vaadin/tests/TestForWindowing.java
@@ -51,7 +51,9 @@ public class TestForWindowing extends CustomComponent {
@Override
public void buttonClick(ClickEvent event) {
- Window w = new Window("Testing Window");
+ VerticalLayout layout = new VerticalLayout();
+ layout.setMargin(true);
+ Window w = new Window("Testing Window", layout);
if (asModal.getValue().booleanValue()) {
w.setModal(true);
@@ -85,8 +87,8 @@ public class TestForWindowing extends CustomComponent {
});
- w.addComponent(s1);
- w.addComponent(s2);
+ layout.addComponent(s1);
+ layout.addComponent(s2);
Slider s = new Slider();
s.setCaption("Volume");
@@ -97,7 +99,7 @@ public class TestForWindowing extends CustomComponent {
// s.setOrientation(Slider.ORIENTATION_VERTICAL);
// s.setArrows(false);
- w.addComponent(s);
+ layout.addComponent(s);
UI.getCurrent().addWindow(w);