From e65e9c5821cdab4d3042a0df8e1fd06c7f36de9a Mon Sep 17 00:00:00 2001 From: Artur Date: Wed, 2 May 2018 14:42:52 +0300 Subject: Fix removing resize and drag curtains when window is closed (#10515) Fixes #10514 --- .../window/CurtainRemainsOnModalWindowClose.java | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 uitest/src/main/java/com/vaadin/tests/components/window/CurtainRemainsOnModalWindowClose.java (limited to 'uitest') 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); + + } + +} -- cgit v1.2.3