blob: 56a759b5f778687e7f784b67f9bfe08f13ffda4e (
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
62
63
64
65
66
67
68
69
|
package com.vaadin.tests.layouts;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.tests.util.TestUtils;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.Layout;
import com.vaadin.ui.Panel;
import com.vaadin.ui.VerticalLayout;
public class MarginWithExpandRatio extends AbstractReindeerTestUI {
@Override
protected void setup(VaadinRequest request) {
TestUtils.injectCSS(this,
".hugemargin { margin: 10px 20px !important; }");
HorizontalLayout hl = new HorizontalLayout();
addLayoutTest(hl);
hl.setExpandRatio(hl.getComponent(0), 1.0f);
hl.setExpandRatio(hl.getComponent(2), 0.5f);
VerticalLayout vl = new VerticalLayout();
addLayoutTest(vl);
vl.setExpandRatio(vl.getComponent(0), 1.0f);
vl.setExpandRatio(vl.getComponent(2), 0.5f);
GridLayout gl = new GridLayout(2, 1);
addLayoutTest(gl);
gl.setColumnExpandRatio(0, 1.0f);
gl.setRowExpandRatio(0, 1.0f);
gl.setColumnExpandRatio(1, 0.5f);
gl.setRowExpandRatio(1, 0.5f);
}
@Override
protected String getTestDescription() {
return "Layout content overflows if CSS margin used with expand ratio";
}
@Override
protected Integer getTicketNumber() {
return 11553;
}
private void addLayoutTest(Layout l) {
l.setSizeFull();
Label lbl = new Label("First (expand ratio 1)");
lbl.setSizeUndefined();
l.addComponent(lbl);
lbl = new Label("Second (margin 10px)");
lbl.setSizeUndefined();
lbl.addStyleName("hugemargin");
l.addComponent(lbl);
lbl = new Label("Third (margin+xr)");
lbl.setSizeUndefined();
lbl.addStyleName("hugemargin");
l.addComponent(lbl);
Panel p = new Panel(l.getClass().getSimpleName(), l);
p.setWidth("600px");
p.setHeight("200px");
addComponent(p);
}
}
|