]> source.dussan.org Git - vaadin-framework.git/commitdiff
reverted changes from [5577] to resolve #2140
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Wed, 8 Oct 2008 13:11:05 +0000 (13:11 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Wed, 8 Oct 2008 13:11:05 +0000 (13:11 +0000)
svn changeset:5613/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/IOrderedLayout.java

index 788e50def5a8bb897c0b9c614f188e9921ae7462..6422f369e49197d558352ba1f68f62ffd58e1278 100644 (file)
@@ -386,12 +386,8 @@ public class IOrderedLayout extends Panel implements Container,
             String structure = "<table cellspacing=\"0\" cellpadding=\"0\"";
 
             if (orientationMode == ORIENTATION_HORIZONTAL) {
-                if (BrowserInfo.get().isIE6()) {
-                    structure += " style=\"height: expression(this.parentElement.offsetHeight+'px')\"";
-                } else {
-                    // Needed for vertical alignment to work
-                    structure += " height=\"100%\"";
-                }
+                // Needed for vertical alignment to work
+                structure += " height=\"100%\"";
             }
             structure += "><tbody>"
                     + (orientationMode == ORIENTATION_HORIZONTAL ? "<tr valign=\"top\"></tr>"