diff options
author | Artur Signell <artur@vaadin.com> | 2016-08-29 22:11:23 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2016-09-01 07:32:49 +0000 |
commit | 84fbff9e6645d0133c7b9f214389e215c79c818f (patch) | |
tree | 333cc84c9de087ceb76be8cdfb5998acabcc4fa0 /uitest/src | |
parent | 814c29c1521a42f355cfc254fb8b00ae436b4956 (diff) | |
download | vaadin-framework-84fbff9e6645d0133c7b9f214389e215c79c818f.tar.gz vaadin-framework-84fbff9e6645d0133c7b9f214389e215c79c818f.zip |
Fix animation end listeners so they are always removed (#17903)
Fixes ComboBox suggestion popup so that it will not automatically
close when clicking the popup button, if the user happened to
double click on the button earlier.
Ported from 7.7
Change-Id: I6cd8c7744ca4c52a7bd52ab12c23fb55522f0611
Diffstat (limited to 'uitest/src')
-rw-r--r-- | uitest/src/main/java/com/vaadin/tests/components/combobox/ComboBoxValoDoubleClick.java | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/uitest/src/main/java/com/vaadin/tests/components/combobox/ComboBoxValoDoubleClick.java b/uitest/src/main/java/com/vaadin/tests/components/combobox/ComboBoxValoDoubleClick.java new file mode 100644 index 0000000000..7b32b5e570 --- /dev/null +++ b/uitest/src/main/java/com/vaadin/tests/components/combobox/ComboBoxValoDoubleClick.java @@ -0,0 +1,48 @@ +/* + * Copyright 2000-2014 Vaadin Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package com.vaadin.tests.components.combobox; + +import com.vaadin.annotations.Theme; +import com.vaadin.server.VaadinRequest; +import com.vaadin.tests.components.AbstractTestUI; +import com.vaadin.v7.ui.ComboBox; + +@Theme("valo") +public class ComboBoxValoDoubleClick extends AbstractTestUI { + + // Quite impossible to autotest reliably as there must be a click to open + // the popup and another click during the opening animation to reproduce the + // bug. Manually a double click is just about the right timing. + @Override + protected void setup(VaadinRequest request) { + ComboBox cb = new ComboBox("Double-click Me"); + for (int i = 0; i < 100; i++) { + cb.addItem("Item-" + i); + } + addComponent(cb); + } + + @Override + public String getTestDescription() { + return "ComboBox should remain usable even after double-clicking (affects only Valo theme with $v-overlay-animate-in)."; + } + + @Override + protected Integer getTicketNumber() { + return 17903; + } + +} |