Revision: 7028 Author: [email protected] Date: Thu Nov 19 12:29:02 2009 Log: Merging trunk c7026 into this branch.
http://code.google.com/p/google-web-toolkit/source/detail?r=7028 Modified: /releases/2.0/branch-info.txt /releases/2.0/user/src/com/google/gwt/user/client/ui/ScrollPanel.java ======================================= --- /releases/2.0/branch-info.txt Thu Nov 19 11:41:10 2009 +++ /releases/2.0/branch-info.txt Thu Nov 19 12:29:02 2009 @@ -823,3 +823,7 @@ Hosted => code server changes svn merge --ignore-ancestry -c7024 \ https://google-web-toolkit.googlecode.com/svn/trunk/ . + +tr...@7026 was merged into this branch + Fix for ScrollPanel in IE6/7-standards-mode. + svn merge --ignore-ancestry -c 7026 https://google-web-toolkit.googlecode.com/svn/trunk . ======================================= --- /releases/2.0/user/src/com/google/gwt/user/client/ui/ScrollPanel.java Tue Oct 13 05:52:22 2009 +++ /releases/2.0/user/src/com/google/gwt/user/client/ui/ScrollPanel.java Thu Nov 19 12:29:02 2009 @@ -41,6 +41,7 @@ getElement().appendChild(containerElem); // Prevent IE standard mode bug when a AbsolutePanel is contained. + DOM.setStyleAttribute(getElement(), "position", "relative"); DOM.setStyleAttribute(containerElem, "position", "relative"); // Hack to account for the IE6/7 scrolling bug described here: -- http://groups.google.com/group/Google-Web-Toolkit-Contributors
