blob: 7328983f212754fccee0d892ad37c4e907cace13 (
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.components.splitpanel;
import com.vaadin.server.Sizeable;
import com.vaadin.tests.components.AbstractTestCase;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.HorizontalSplitPanel;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.NativeButton;
public class SplitPanelExtraScrollbars extends AbstractTestCase implements
ClickListener {
private HorizontalSplitPanel sp;
private HorizontalLayout hl;
private Button b;
@Override
public void init() {
sp = new HorizontalSplitPanel();
sp.setSizeFull();
sp.setSplitPosition(0, Sizeable.UNITS_PIXELS);
hl = new HorizontalLayout();
hl.setMargin(true);
hl.setWidth("100%");
hl.setHeight(null);
b = createButton("200px");
sp.setSecondComponent(hl);
hl.addComponent(b);
LegacyWindow w = new LegacyWindow("Test", sp);
setMainWindow(w);
}
private Button createButton(String height) {
Button b = new NativeButton("A BIG button");
b.setHeight(height);
b.addListener(this);
return b;
}
@Override
protected String getDescription() {
return "Click the button to change its height. Making the button higher than the browser should not cause vertical but not horizontal scrollbars to appear.";
}
@Override
protected Integer getTicketNumber() {
return 3458;
}
@Override
public void buttonClick(ClickEvent event) {
if (b.getHeight() == 200) {
b.setHeight("1200px");
} else {
b.setHeight("200px");
}
// Sending all changes in one repaint triggers the bug
hl.markAsDirty();
sp.markAsDirty();
}
}
|