blob: af997f36192b972b079ca399c7c8a4546d791071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package com.vaadin.tests.components.window;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.NativeButton;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.Window;
public class ExtraLargeSubWindow extends TestBase {
@Override
protected void setup() {
VerticalLayout layout = new VerticalLayout();
layout.setMargin(true);
layout.setSizeFull();
Window w = new Window("full sized window", layout);
w.setWidth("2000px");
w.setHeight("2000px");
NativeButton b = new NativeButton("A large button");
b.setSizeFull();
layout.addComponent(b);
getMainWindow().addWindow(w);
}
@Override
protected String getDescription() {
return "A 100%x100% sub window should not produce scrollbars in the main view or in the sub window. The button inside the sub window is 100%x100%, as is the layout";
}
@Override
protected Integer getTicketNumber() {
return 3407;
}
}
|