summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-03-27 10:14:50 +0300
committerLeif Åstrand <leif@vaadin.com>2012-03-27 10:49:52 +0300
commiteb3712443bf19ac057d8a105e5fe8981f9f4cbdb (patch)
tree534e83a4ba87249f2dc0e6791394b085dbe31a5e /tests
parent602c38e51946f327c49ff3abf57a56734f5430ce (diff)
downloadvaadin-framework-eb3712443bf19ac057d8a105e5fe8981f9f4cbdb.tar.gz
vaadin-framework-eb3712443bf19ac057d8a105e5fe8981f9f4cbdb.zip
Update PopupView to work with LayoutManager (#8313)
Diffstat (limited to 'tests')
-rw-r--r--tests/testbench/com/vaadin/tests/components/popupview/PopupViewOffScreen.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/testbench/com/vaadin/tests/components/popupview/PopupViewOffScreen.java b/tests/testbench/com/vaadin/tests/components/popupview/PopupViewOffScreen.java
index 5cb0f073d6..cd2b77806c 100644
--- a/tests/testbench/com/vaadin/tests/components/popupview/PopupViewOffScreen.java
+++ b/tests/testbench/com/vaadin/tests/components/popupview/PopupViewOffScreen.java
@@ -15,6 +15,7 @@ import com.vaadin.ui.Label.ContentMode;
import com.vaadin.ui.Panel;
import com.vaadin.ui.PopupView;
import com.vaadin.ui.VerticalLayout;
+import com.vaadin.ui.themes.BaseTheme;
public class PopupViewOffScreen extends TestBase {
@@ -62,6 +63,7 @@ public class PopupViewOffScreen extends TestBase {
vl.setSpacing(false);
vl.setMargin(false);
vl.setSizeFull();
+ vl.addStyleName(BaseTheme.CLIP);
Panel p = new Panel(vl);
p.setWidth("400px");