diff options
author | Artur <artur@vaadin.com> | 2018-05-02 14:42:52 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2018-05-02 14:42:52 +0300 |
commit | e65e9c5821cdab4d3042a0df8e1fd06c7f36de9a (patch) | |
tree | 7d4a47d67155879152f0e7527709465281279596 /uitest | |
parent | c4d621c7772347f1b90c94d566c894b7434cb7f1 (diff) | |
download | vaadin-framework-e65e9c5821cdab4d3042a0df8e1fd06c7f36de9a.tar.gz vaadin-framework-e65e9c5821cdab4d3042a0df8e1fd06c7f36de9a.zip |
Fix removing resize and drag curtains when window is closed (#10515)
Fixes #10514
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/main/java/com/vaadin/tests/components/window/CurtainRemainsOnModalWindowClose.java | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/uitest/src/main/java/com/vaadin/tests/components/window/CurtainRemainsOnModalWindowClose.java b/uitest/src/main/java/com/vaadin/tests/components/window/CurtainRemainsOnModalWindowClose.java new file mode 100644 index 0000000000..33971c85e2 --- /dev/null +++ b/uitest/src/main/java/com/vaadin/tests/components/window/CurtainRemainsOnModalWindowClose.java @@ -0,0 +1,39 @@ +/* + * Copyright 2000-2016 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.window; + +import com.vaadin.annotations.Widgetset; +import com.vaadin.server.VaadinRequest; +import com.vaadin.tests.components.AbstractTestUIWithLog; +import com.vaadin.ui.Button; +import com.vaadin.ui.Window; + +@Widgetset("com.vaadin.DefaultWidgetSet") +public class CurtainRemainsOnModalWindowClose extends AbstractTestUIWithLog { + + @Override + protected void setup(VaadinRequest request) { + Window w = new Window(null, + new Button("try double or triple click here")); + w.addClickListener(e -> w.close()); + + Button open = new Button("open window"); + open.addClickListener(e -> addWindow(w)); + addComponent(open); + + } + +} |