blob: 410b5c17ada4df5c7b5c3dbd1e3dd91d56c6e982 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
package com.vaadin.tests.components.combobox;
import com.vaadin.tests.components.AbstractTestCase;
import com.vaadin.ui.ComboBox;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.Layout;
import com.vaadin.ui.LegacyWindow;
@SuppressWarnings("serial")
public class GridLayoutComboBoxZoomOut extends AbstractTestCase {
@Override
public void init() {
LegacyWindow mainWindow = new LegacyWindow(
"Gridlayoutbug Application");
setMainWindow(mainWindow);
Label description = new Label(
"Open this application in Chrome, zoom out (cmd + \"-\") and "
+ "open the ComboBox for weird behaviour.");
mainWindow.addComponent(description);
Layout formLayout = new GridLayout(2, 1);
// formLayout.setWidth("100%");
formLayout.setWidth("1000px");
ComboBox countryField = new ComboBox();
countryField.addItem("Finland");
countryField.addItem("Sweden");
countryField.addItem("Canada");
countryField.addItem("USA");
countryField.setCaption("Country");
countryField.setWidth("100%");
formLayout.addComponent(countryField);
ComboBox statusField = new ComboBox();
statusField.addItem("Available");
statusField.addItem("On vacation");
statusField.addItem("Busy");
statusField.addItem("Left the building");
statusField.setCaption("Status");
statusField.setWidth("100%");
formLayout.addComponent(statusField);
mainWindow.addComponent(formLayout);
}
@Override
protected String getDescription() {
// TODO Auto-generated method stub
return null;
}
@Override
protected Integer getTicketNumber() {
// TODO Auto-generated method stub
return null;
}
}
|