]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes #3422
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Mon, 28 Sep 2009 14:34:03 +0000 (14:34 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Mon, 28 Sep 2009 14:34:03 +0000 (14:34 +0000)
svn changeset:8966/svn branch:6.1

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

index fccb9e0fd2aee5f2ecc862b50f688fd5c5ff32ca..813901a56497e3b0e478049cf995d4716c947fde 100644 (file)
@@ -257,6 +257,13 @@ public class VCssLayout extends SimplePanel implements Paintable, Container {
                     + String.valueOf(cssProperty.charAt(indexOf + 1))
                             .toUpperCase() + cssProperty.substring(indexOf + 2);
         }
+        if ("float".equals(cssProperty)) {
+            if (BrowserInfo.get().isIE()) {
+                return "styleFloat";
+            } else {
+                return "cssFloat";
+            }
+        }
         return cssProperty;
     }
 }