blob: 2fd9de17525d8ce69f924591c835665594af850b (
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.tickets;
import com.vaadin.server.LegacyApplication;
import com.vaadin.shared.ui.label.ContentMode;
import com.vaadin.ui.Label;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
public class Ticket1444 extends LegacyApplication {
@Override
public void init() {
final LegacyWindow mainWin = new LegacyWindow(
"Test app to break layout fuction in IE7");
setMainWindow(mainWin);
VerticalLayout ol = new VerticalLayout();
ol.setHeight("250px");
ol.setWidth("500px");
Label red = new Label(
"<div style='background:red;width:100%;height:100%;'>??</div>",
ContentMode.HTML);
red.setSizeFull();
ol.addComponent(red);
mainWin.addComponent(ol);
}
}
|