Embedded

I’m trying to embed and tag with Vaadin but it’s actually rendering an DIV tag.

		Embedded em = new Embedded();
		em.setType(Embedded.TYPE_OBJECT);
		em.setMimeType("application/x-sharepoint");
		em.setWidth("0");
		em.setHeight("0");
		em.setId("winFirefoxPlugin");

Output is

I was expecting

<object id=“winFirefoxPlugin” type=”application/x-sharepoint" width=“0” height=“0” style=”visibility: hidden;”>

According to the docs Embedded should render an OBJECT tag. Don’t know what is happening. I’m using Firefox and Mac.

thanks in advance,

Maurício

I’m trying to embed and tag with Vaadin but it’s actually rendering an DIV tag.

		Embedded em = new Embedded();
		em.setType(Embedded.TYPE_OBJECT);
		em.setMimeType("application/x-sharepoint");
		em.setWidth("0");
		em.setHeight("0");
		em.setId("winFirefoxPlugin");

Output is

I was expecting

<object id=“winFirefoxPlugin” type=”application/x-sharepoint" width=“0” height=“0” style=”visibility: hidden;”>

According to the docs Embedded should render an OBJECT tag. Don’t know what is happening. I’m using Firefox and Mac.

thanks in advance,

Maurício