]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed missing ending clause in the <embed> tag. #6501
authorJohn Alhroos <john.ahlroos@itmill.com>
Tue, 8 Mar 2011 08:20:31 +0000 (08:20 +0000)
committerJohn Alhroos <john.ahlroos@itmill.com>
Tue, 8 Mar 2011 08:20:31 +0000 (08:20 +0000)
svn changeset:17654/svn branch:6.5

src/com/vaadin/terminal/gwt/client/ui/VEmbedded.java

index 8b18439b52738b9605db51269c97c6ec7dc6f78b..2e05a77482024194734f7773cc32cf039e44bd60 100644 (file)
@@ -252,7 +252,7 @@ public class VEmbedded extends HTML implements Paintable {
         }
 
         // End embed tag
-        html.append("</embed>");
+        html.append("></embed>");
 
         // End object tag
         html.append("</object>");