]> source.dussan.org Git - vaadin-framework.git/commitdiff
#7672 eliminated "double escaping" of attributes
authorHenri Sara <henri.sara@itmill.com>
Tue, 27 Sep 2011 09:25:57 +0000 (09:25 +0000)
committerHenri Sara <henri.sara@itmill.com>
Tue, 27 Sep 2011 09:25:57 +0000 (09:25 +0000)
svn changeset:21330/svn branch:6.6

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

index bd7b16022e5b26c442c6859210664b620f32beeb..59f0afdd3ce73c99c44d016075643c6b3b26c7e4 100644 (file)
@@ -159,24 +159,24 @@ public class VEmbedded extends HTML implements Paintable {
                     obj.getStyle().setProperty("height", "100%");
                 }
                 if (uidl.hasAttribute("classid")) {
-                    obj.setAttribute("classid", Util.escapeAttribute(uidl
-                            .getStringAttribute("classid")));
+                    obj.setAttribute("classid",
+                            uidl.getStringAttribute("classid"));
                 }
                 if (uidl.hasAttribute("codebase")) {
-                    obj.setAttribute("codebase", Util.escapeAttribute(uidl
-                            .getStringAttribute("codebase")));
+                    obj.setAttribute("codebase",
+                            uidl.getStringAttribute("codebase"));
                 }
                 if (uidl.hasAttribute("codetype")) {
-                    obj.setAttribute("codetype", Util.escapeAttribute(uidl
-                            .getStringAttribute("codetype")));
+                    obj.setAttribute("codetype",
+                            uidl.getStringAttribute("codetype"));
                 }
                 if (uidl.hasAttribute("archive")) {
-                    obj.setAttribute("archive", Util.escapeAttribute(uidl
-                            .getStringAttribute("archive")));
+                    obj.setAttribute("archive",
+                            uidl.getStringAttribute("archive"));
                 }
                 if (uidl.hasAttribute("standby")) {
-                    obj.setAttribute("standby", Util.escapeAttribute(uidl
-                            .getStringAttribute("standby")));
+                    obj.setAttribute("standby",
+                            uidl.getStringAttribute("standby"));
                 }
                 getElement().appendChild(obj);