blob: 253d6a0d1e3acedf4f0a602e4ffff12094cb2d2a (
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
|
package com.vaadin.tests.components.combobox;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.ui.ComboBox;
public class ComboBoxSuggestionPopupClose extends AbstractTestUI {
@Override
protected void setup(VaadinRequest request) {
final ComboBox select = new ComboBox("ComboBox");
select.addItem("one");
select.addItem("two");
select.addItem("three");
addComponent(select);
}
@Override
protected String getTestDescription() {
return "Closing the suggestion popup using Enter key is "
+ "broken in combobox when opening popup using Enter "
+ "key and not changin the selection using arrows";
}
@Override
protected Integer getTicketNumber() {
return 14379;
}
}
|