blob: 3b8067c726be0d9b40badad91deaf67ae8c6a2c2 (
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
|
package com.vaadin.tests.components.window;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Window;
public class HugeWindowShouldBeClosable extends TestBase {
@Override
protected void setup() {
Window w = new Window("Hueg");
w.setWidth("2000px");
w.setHeight("2000px");
w.setPositionY(500);
getMainWindow().addWindow(w);
}
@Override
protected String getDescription() {
return "Huge windows should be closable";
}
@Override
protected Integer getTicketNumber() {
return 6784;
}
}
|