package com.vaadin.tests.tickets; import com.vaadin.LegacyApplication; import com.vaadin.server.ClassResource; import com.vaadin.server.DownloadStream; import com.vaadin.server.Resource; import com.vaadin.ui.Embedded; import com.vaadin.ui.Label; import com.vaadin.ui.LegacyWindow; import com.vaadin.ui.Panel; import com.vaadin.ui.VerticalLayout; public class Ticket1737 extends LegacyApplication { Resource slowRes = new ClassResource(Ticket1737.class, "m-bullet-blue.gif") { @Override public DownloadStream getStream() { try { Thread.sleep(4000); } catch (InterruptedException e) { e.printStackTrace(); } return super.getStream(); } }; @Override public void init() { final LegacyWindow main = new LegacyWindow(getClass().getName() .substring(getClass().getName().lastIndexOf(".") + 1)); setMainWindow(main); VerticalLayout el = new VerticalLayout(); main.setContent(el); Panel p = new Panel("Test panel"); p.setSizeFull(); p.addComponent(new Label( "Second component is embedded with a slow resource " + "and thus should break layout if Embedded cannot" + " request re-layout after load.")); Embedded em = new Embedded("TestEmbedded", slowRes); el.addComponent(p); el.addComponent(em); } }