package com.vaadin.tests.tickets; import com.vaadin.Application; import com.vaadin.terminal.ExternalResource; import com.vaadin.ui.Embedded; import com.vaadin.ui.Root.LegacyWindow; public class Ticket2095 extends Application.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.setDebugId("MYIFRAME"); em.setSizeFull(); w.addComponent(em); } }