blob: b3179ca7ce6adb5cff393935277a503f68588d94 (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.ui.ComboBox;
import com.vaadin.ui.UI.LegacyWindow;
public class Ticket1767 extends com.vaadin.Application {
@Override
public void init() {
final LegacyWindow main = new LegacyWindow(getClass().getName()
.substring(getClass().getName().lastIndexOf(".") + 1));
setMainWindow(main);
ComboBox cb = new ComboBox(" '<' item is not seen in populist?");
cb.addItem("Te<strong>st</strong> < jep >");
cb.addItem("<");
cb.addItem(">");
cb.addItem("< dsf");
cb.addItem("> sdf");
cb.addItem("dsfs <");
cb.addItem("sdfsd >");
main.addComponent(cb);
}
}
|