blob: 41f1de2c4ae4efac8e4e4fcc30e3b482daf5d789 (
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
|
package com.vaadin.tests.layouts;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.TextField;
public class OrderedLayoutCSSCompatibility extends TestBase {
@Override
protected String getDescription() {
return "This test is to make sure that spacing/margins in OrderedLayout is still backwards compatible";
}
@Override
protected Integer getTicketNumber() {
return 2463;
}
@Override
protected void setup() {
HorizontalLayout l = new HorizontalLayout();
l.setMargin(true);
l.setSpacing(true);
l.addComponent(new TextField("abc"));
l.addComponent(new TextField("def"));
addComponent(l);
}
}
|