summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2009-08-27 08:55:30 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2009-08-27 08:55:30 +0000
commit7072fbb2f053ab9a390ee5e004d65e465c7b93e7 (patch)
tree54254dcc80a63646e5c3afce366437fe2b28010d /src
parentabaf093054becca1106468f815053583d830e58e (diff)
downloadvaadin-framework-7072fbb2f053ab9a390ee5e004d65e465c7b93e7.tar.gz
vaadin-framework-7072fbb2f053ab9a390ee5e004d65e465c7b93e7.zip
fixes #3229
svn changeset:8556/svn branch:6.1
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/terminal/gwt/client/ui/layout/CellBasedLayout.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ui/layout/CellBasedLayout.java b/src/com/vaadin/terminal/gwt/client/ui/layout/CellBasedLayout.java
index 538d4f8c9f..c3f591df5d 100644
--- a/src/com/vaadin/terminal/gwt/client/ui/layout/CellBasedLayout.java
+++ b/src/com/vaadin/terminal/gwt/client/ui/layout/CellBasedLayout.java
@@ -236,7 +236,7 @@ public abstract class CellBasedLayout extends ComplexPanel implements Container
helper = Document.get().createDivElement();
helper
.setInnerHTML("<div style=\"position:absolute;top:0;left:0;height:0;visibility:hidden;overflow:hidden;\">"
- + "<div style=\"width:0;height:0;visibility:hidden;overflow;hidden;\"></div></div><div style=\"position:absolute;height:0;\"></div>");
+ + "<div style=\"width:0;height:0;visibility:hidden;overflow;hidden;\"></div></div><div style=\"position:absolute;height:0;overflow:hidden;\"></div>");
NodeList<Node> childNodes = helper.getChildNodes();
measurement = (DivElement) childNodes.getItem(0);
measurement2 = (DivElement) measurement.getFirstChildElement();