summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/tickets/Ticket2095.java
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/src/com/vaadin/tests/tickets/Ticket2095.java')
-rw-r--r--uitest/src/com/vaadin/tests/tickets/Ticket2095.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket2095.java b/uitest/src/com/vaadin/tests/tickets/Ticket2095.java
deleted file mode 100644
index 270da9dc3f..0000000000
--- a/uitest/src/com/vaadin/tests/tickets/Ticket2095.java
+++ /dev/null
@@ -1,29 +0,0 @@
-package com.vaadin.tests.tickets;
-
-import com.vaadin.server.ExternalResource;
-import com.vaadin.server.LegacyApplication;
-import com.vaadin.ui.Embedded;
-import com.vaadin.ui.LegacyWindow;
-
-public class Ticket2095 extends LegacyApplication {
-
- @Override
- public void init() {
- LegacyWindow w = new LegacyWindow(getClass().getSimpleName());
- setMainWindow(w);
-
- // uncomment to workaround iorderedlayout bug in current trunk
- // w.setContent(new ExpandLayout());
- w.getContent().setSizeFull();
-
- Embedded em = new Embedded();
- em.setType(Embedded.TYPE_BROWSER);
- em.setSource(new ExternalResource("../statictestfiles/ticket2095.html"));
- em.setId("MYIFRAME");
-
- em.setSizeFull();
-
- w.addComponent(em);
-
- }
-}