summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHenri Sara <henri.sara@itmill.com>2011-09-27 09:25:57 +0000
committerHenri Sara <henri.sara@itmill.com>2011-09-27 09:25:57 +0000
commitc49bd62b42c8c0c658321589b391d7975e435efa (patch)
tree831e4bb70e11b03c2a71a6937e0040a10ad44d38 /src
parent9fe131039de77038d4f9135e1b080c3750442873 (diff)
downloadvaadin-framework-c49bd62b42c8c0c658321589b391d7975e435efa.tar.gz
vaadin-framework-c49bd62b42c8c0c658321589b391d7975e435efa.zip
#7672 eliminated "double escaping" of attributes
svn changeset:21330/svn branch:6.6
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/terminal/gwt/client/ui/VEmbedded.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ui/VEmbedded.java b/src/com/vaadin/terminal/gwt/client/ui/VEmbedded.java
index bd7b16022e..59f0afdd3c 100644
--- a/src/com/vaadin/terminal/gwt/client/ui/VEmbedded.java
+++ b/src/com/vaadin/terminal/gwt/client/ui/VEmbedded.java
@@ -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);