diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/tickets/Ticket2297.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/tickets/Ticket2297.java | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket2297.java b/uitest/src/com/vaadin/tests/tickets/Ticket2297.java new file mode 100644 index 0000000000..073126ae07 --- /dev/null +++ b/uitest/src/com/vaadin/tests/tickets/Ticket2297.java @@ -0,0 +1,41 @@ +package com.vaadin.tests.tickets; + +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.net.URL; + +import com.vaadin.ui.CustomLayout; +import com.vaadin.ui.Label; +import com.vaadin.ui.UI.LegacyWindow; + +public class Ticket2297 extends Ticket2292 { + + @Override + public void init() { + final LegacyWindow main = new LegacyWindow(getClass().getName() + .substring(getClass().getName().lastIndexOf(".") + 1)); + setMainWindow(main); + URL url = getURL(); + main.addComponent(new Label( + "Icon is built by servlet with a slow method, so it will show the bug (components not firing requestLayout).")); + + try { + CustomLayout cl = new CustomLayout( + new ByteArrayInputStream( + ("This is an empty CustomLayout with as slow image. <img src=\"" + + url.toString() + "/icon.png\" />") + .getBytes())); + main.addComponent(cl); + + cl = new CustomLayout( + new ByteArrayInputStream( + ("This is an empty CustomLayout with as slow image. <img src=\"" + + url.toString() + "/icon.png\" />") + .getBytes())); + main.addComponent(cl); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } +}
\ No newline at end of file |